Spoiled

Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.

什么是Spoiled?

Spoiled是由Lucas Rowe开发的Chrome扩展程序,该扩展的主要功能是“Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.”。

扩展截图

screenshot
screenshot
screenshot

下载Spoiled扩展crx文件

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

扩展使用说明

                        With this unobtrusive and lightweight spoiler blocker users enter custom phrases to block anything from TV spoilers to celebrity click-bait. Spoiled will scan pages for entered phrases and hide any content using those phrases, including nearby images.

Features
* Block any phrase
* Block images nearby detected phrases
* Works on any website, including Facebook, Twitter, and other social networks
* No registration or social network logins required
* No user data collection of any kind
* Allows regular expressions
* Snooze to temporarily allow spoilers
* Open source

Limitations
This is still in development and is done as a side project. It is meant to be lightweight so coverage is likely less than some proprietary plugins. The goal is that it will run better and provide more control than the heavyweight plugins. Also note that this cannot protect you from mobile spoilers so keep your guard up.

This is an open source extension created by a passionate spoiler hater. If you'd like to contribute or roll your own, please feel free to fork me on Github: https://github.com/lucasrowe/spoiled                    

扩展基本信息

名称 Spoiled Spoiled
ID ofgoaiodajmkpocgdkjlokhhbpeodnci
官方URL https://chrome.google.com/webstore/detail/spoiled/ofgoaiodajmkpocgdkjlokhhbpeodnci
简介 Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.
文件大小 34.13 KB
安装次数 315
当前版本 1.1.2
更新时间 2020-07-16
上架时间 2016-08-18
评分 4.60/5 共10次评分
开发者 Lucas Rowe
电子邮箱 [email protected]
付费类型 free
扩展官网 https://lucasrowe.github.io/spoiled
帮助页面URL https://github.com/lucasrowe/spoiled/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spoiled",
    "description": "Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.",
    "version": "1.1.2",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "spoiler_style.css"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ]
}