Spoiler Slayer

A customizable spoiler blocking plugin with support for Facebook, Reddit, Twitter, Google News, and many more sites!

Spoiler Slayerとは何ですか?

Spoiler Slayerはhttps://brettp.github.io/spoiler-slayerによって開発されたChromeの拡張機能で、その主な機能は「A customizable spoiler blocking plugin with support for Facebook, Reddit, Twitter, Google News, and many more sites!」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Spoiler Slayer拡張機能のCRXファイルをダウンロード

Spoiler Slayer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Spoiler Slayer is an open source, tracking-free, simple extension for Chrome that blocks TV, movies, and book spoilers on your favorite sites. Subscribe in one click to public lists that always stay fresh and make sure no spoilers slip by, or use the advanced settings to fine tune what text to block on what sites.

Spoiler Slayer includes out of the box support for many popular sites, and it's easy to add more.

Settings allow users to customize the blocking experience with 3 modes:
* Censor - Hides potential content under a black censor bar
* Blur - Blurs out content
* Remove - Removes content completely from the page as if they were never there

Other features include:
* Imports, exports, and subscriptions - Create your list of spoilers or sites and share it with the world!
* Blur intensity - Blur elements on the page to oblivion, or keep them just under legible
* Reveal on hover or click - Feeling brave? Reveal the spoiler when you hover over or click on the censored area
* RegEx support - Anticipate common misspellings or only block certain URLs
* Selector helper - It's easy to add new sites with the built-in selector helper, which highlights items on the page as you type
* Blocked counts - Know how many times you've avoided mild panic!

No data is sent to any 3rd party servers by this extension. Data is fetched when updating subscribed lists, but this is not required for functionality. The extension is aware of the sites you visit so it knows what to block, but it does not retain or transmit that information.

* "Access your data for all websites" or "Read and change all your data on the websites you visit" -
   Needed to match which sites to block
* "Download files and read and modify the browser’s download history" or "Manage your downloads" -
   Needed to export and import settings to files
* "Access browser tabs" - Needed to display counts and subscription status in badge icon                    

拡張機能の基本情報

名前 Spoiler Slayer Spoiler Slayer
ID mploapfinhlhbgddjadjnhgiockogjlc
公式URL https://chromewebstore.google.com/detail/spoiler-slayer/mploapfinhlhbgddjadjnhgiockogjlc
説明 A customizable spoiler blocking plugin with support for Facebook, Reddit, Twitter, Google News, and many more sites!
ファイルサイズ 11.61 MB
インストール数 183
現在のバージョン 1.1.0
最終更新日 2023-08-26
公開日 2018-12-16
評価 5.00/5 合計 2 レビュー
開発者 https://brettp.github.io/spoiler-slayer
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/brettp/spoiler-slayer
ヘルプページのURL https://github.com/brettp/spoiler-slayer/issues
プライバシーポリシーページのURL https://github.com/brettp/spoiler-slayer
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spoiler Slayer",
    "short_name": "SpoilerSlayer",
    "description": "A customizable spoiler blocking plugin with support for Facebook, Reddit, Twitter, Google News, and many more sites!",
    "version": "1.1.0",
    "author": "Brett Profitt",
    "homepage_url": "https:\/\/www.github.com\/brettp\/spoiler-slayer",
    "browser_action": {
        "default_icon": "assets\/icons\/battered-axe-48.png",
        "default_popup": "popup.html",
        "default_title": "Spoiler Slayer"
    },
    "icons": {
        "16": "assets\/icons\/battered-axe-16.png",
        "32": "assets\/icons\/battered-axe-32.png",
        "48": "assets\/icons\/battered-axe-48.png",
        "64": "assets\/icons\/battered-axe-64.png",
        "96": "assets\/icons\/battered-axe-96.png",
        "128": "assets\/icons\/battered-axe-128.png",
        "256": "assets\/icons\/battered-axe-256.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "scripts\/lib\/msgApi.js",
            "scripts\/lib\/helpers.js",
            "scripts\/lib\/models.js",
            "scripts\/lib\/settings.js",
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "css": [
                "styles\/content.css"
            ],
            "js": [
                "scripts\/lib\/msgApi.js",
                "scripts\/lib\/helpers.js",
                "scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "downloads",
        "alarms",
        "https:\/\/*.github.com\/",
        "https:\/\/*.gitlab.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'; connect-src 'self' localhost:* ws:\/\/localhost:* https:\/\/*.github.com https:\/\/*.githubusercontent.com https:\/\/*.gitlab.com https:\/\/gitlab.com"
}