Spoiler Specs

Removes spoilery thumbnails and descriptions on streaming sites

什么是Spoiler Specs?

Spoiler Specs是由tomlumperson开发的Chrome扩展程序,该扩展的主要功能是“Removes spoilery thumbnails and descriptions on streaming sites”。

扩展截图

screenshot
screenshot

下载Spoiler Specs扩展crx文件

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

扩展使用说明

                        Removes spoilery thumbnails and descriptions on HBO, Netflix, Hulu, Crunchyroll, and Amazon.                    

扩展基本信息

名称 Spoiler Specs Spoiler Specs
ID ooegdkkipjbdfhdkamblcfljmolhakbo
官方URL https://chromewebstore.google.com/detail/spoiler-specs/ooegdkkipjbdfhdkamblcfljmolhakbo
简介 Removes spoilery thumbnails and descriptions on streaming sites
文件大小 28.69 KB
安装次数 117
当前版本 1.1.3
更新时间 2021-05-28
上架时间 2019-10-18
评分 5.00/5 共2次评分
开发者 tomlumperson
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.tomlum.com/spoilerspecs
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spoiler Specs",
    "short_name": "Spoiler Specs",
    "version": "1.1.3",
    "manifest_version": 2,
    "description": "Removes spoilery thumbnails and descriptions on streaming sites",
    "homepage_url": "http:\/\/www.TomLum.com\/spoilerspecs",
    "icons": {
        "128": "icons\/icon128on.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": "icons\/icon128on.png",
        "default_title": "Spoiler Specs",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.hulu.com\/*"
            ],
            "js": [
                "src\/inject\/hulu.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.amazon.com\/*"
            ],
            "js": [
                "src\/inject\/amazon.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.hbogo.com\/*"
            ],
            "js": [
                "src\/inject\/hbogo.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.hbomax.com\/*"
            ],
            "js": [
                "src\/inject\/hbomax.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.hbonow.com\/*"
            ],
            "js": [
                "src\/inject\/hbogo.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "src\/inject\/netflix.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.crunchyroll.com\/*"
            ],
            "js": [
                "src\/inject\/crunchyroll.js"
            ]
        }
    ]
}