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
Eメール [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": []
}