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文件

下载Ryan's Spoiler Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        ]
    }
}