Ryan's Spoiler Blocker

Choose keywords to block from your web browser, along with text surrounding them.

Ryan's Spoiler Blocker란 무엇입니까?

Ryan's Spoiler Blocker은(는) ryanholland1987에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Choose keywords to block from your web browser, along with text surrounding them."입니다.

확장 프로그램 스크린샷

screenshot

Ryan's Spoiler Blocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Unlike similar extensions, it works on Facebook, Youtube, Reddit, and Twitter feeds, along with message boards, comment sections, etc!

Keeps spoilers from touching your eyeballs...

...At least, a lot of the time. There are some things it can't detect.

It's an imperfect solution to a difficult problem, but I hope it helps.

It can be used for TV shows, movies, sports teams, politicians, celebrities, curse words, or your ex's name.

It replaces them with "[TEXT BLOCKED]".

It does not collect any data on you or your browsing habits.

It should not slow down your browser; if it does, try using fewer keywords.

Press the star button in the top right of the browser to change the keywords or turn it on and off. You might want to turn it off if doing something important, like banking.

I'd be glad to hear if you liked it, or if you have suggestions for changes. I intend to update it with more features.                    

확장 프로그램 기본 정보

이름 Ryan's Spoiler Blocker Ryan's Spoiler Blocker
ID imgkcgoajllcokmmiegppbenjnjggdbd
공식 URL https://chromewebstore.google.com/detail/ryans-spoiler-blocker/imgkcgoajllcokmmiegppbenjnjggdbd
설명 Choose keywords to block from your web browser, along with text surrounding them.
파일 크기 119 KB
설치 횟수 42
현재 버전 1.3
최근 업데이트 2016-01-25
출시 날짜 2016-01-25
평점 5.00/5 총 2 개의 평점
개발자 ryanholland1987
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ryan's Spoiler Blocker",
    "description": "Choose keywords to block from your web browser, along with text surrounding them.",
    "version": "1.3",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Ryan's Spoiler Blocker",
        "default_icon": "icon128x128.png",
        "default_popup": "options.html"
    },
    "icons": {
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}