Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

什么是Twitch VOD Unspoiler?

Twitch VOD Unspoiler是由Kyle Coburn开发的Chrome扩展程序,该扩展的主要功能是“Removes spoilers from Twitch.tv VODs.”。

扩展截图

screenshot

下载Twitch VOD Unspoiler扩展crx文件

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

扩展使用说明

                        ・Hides references to VOD durations on videos/playback pages, and replaces the scrubber with relative time controls (e.g. -30 seconds/+15 minutes)
・Click the extension's icon to toggle spoilers on a per-channel basis

This extension collects no data, and respects your privacy and battery life. Open source at: https://github.com/ky-is/twitch-vod-unspoiler

(Note you can check the video's current time by clicking the playback Settings icon.)                    

扩展基本信息

名称 Twitch VOD Unspoiler Twitch VOD Unspoiler
ID kjeacdeffkhbcaoobelkgnnlfpaifaoc
官方URL https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc
简介 Removes spoilers from Twitch.tv VODs.
文件大小 8.68 KB
安装次数 784
当前版本 2.5.6
更新时间 2023-11-06
上架时间 2020-06-06
评分 4.94/5 共17次评分
开发者 Kyle Coburn
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ky-is/twitch-vod-unspoiler
帮助页面URL https://github.com/ky-is/twitch-vod-unspoiler/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch VOD Unspoiler",
    "version": "2.5.6",
    "description": "Removes spoilers from Twitch.tv VODs.",
    "browser_action": {
        "default_icon": "images\/icon-off.png"
    },
    "icons": {
        "128": "images\/icon-on.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "generated\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*",
                "*:\/\/twitch.tv\/*"
            ],
            "css": [
                "generated\/inject.css"
            ],
            "js": [
                "generated\/inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": []
}