Spoiler Preventer

Avoid colliding with spoilers

什麼是Spoiler Preventer?

Spoiler Preventer是由Cycle & Carriage開發的Chrome擴展程式,該擴展的主要功能是“Avoid colliding with spoilers”。

擴展截圖

screenshot
screenshot
screenshot

下載Spoiler Preventer擴展crx文件

下載Spoiler Preventer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Introducing Spoiler Preventer, a browser extension that actively blocks out potential spoilers to your favourite television series or movie. Simply turn this on, and you will never encounter another spoiler accidentally again.                    

擴展基本資訊

名稱 Spoiler Preventer Spoiler Preventer
ID phncefdjfiecennngpkplhakjeneahai
官方網址 https://chromewebstore.google.com/detail/spoiler-preventer/phncefdjfiecennngpkplhakjeneahai
簡介 Avoid colliding with spoilers
檔案大小 3.51 MB
安裝次數 13
目前版本 0.6
更新時間 2019-07-06
上架時間 2019-07-05
評分 4.00/5 共 4 次評分
開發者 Cycle & Carriage
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spoiler Preventer",
    "short_name": "SpoilerPreventer",
    "description": "Avoid colliding with spoilers",
    "version": "0.6",
    "author": "Naveen: BBDO Singapore",
    "homepage_url": "https:\/\/www.cyclecarriage.com\/",
    "offline_enabled": true,
    "browser_action": {
        "default_icon": {
            "19": "images\/mz-logo-19x19.png",
            "38": "images\/mz-logo-38x38.png",
            "48": "images\/mz-logo-48x48.png",
            "128": "images\/mz-logo-128x128.png"
        },
        "default_title": "Spoiler Preventer",
        "default_popup": "index.html"
    },
    "icons": {
        "19": "images\/mz-logo-19x19.png",
        "38": "images\/mz-logo-38x38.png",
        "48": "images\/mz-logo-48x48.png",
        "128": "images\/mz-logo-128x128.png"
    },
    "permissions": [
        "activeTab",
        "background",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "css\/blocker-style.css"
            ],
            "js": [
                "js\/jquery-3.0.0.min.js",
                "js\/blocking.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}