Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

What is Twitch VOD Unspoiler?

Twitch VOD Unspoiler is a Chrome extension developed by Kyle Coburn, and its main feature is "Removes spoilers from Twitch.tv VODs.".

Extension Screenshots

screenshot

Download Twitch VOD Unspoiler Extension CRX File

Download Twitch VOD Unspoiler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        ・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.)                    

Extension Basic Information

Name Twitch VOD Unspoiler Twitch VOD Unspoiler
ID kjeacdeffkhbcaoobelkgnnlfpaifaoc
Official URL https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc
Description Removes spoilers from Twitch.tv VODs.
File Size 8.68 KB
Installation Count 784
Current Version 2.5.6
Last Updated 2023-11-06
Publish Date 2020-06-06
Rating 4.94/5 Total 17 Ratings
Developer Kyle Coburn
Email [email protected]
Payment Type free
Extension Website https://github.com/ky-is/twitch-vod-unspoiler
Help Page URL https://github.com/ky-is/twitch-vod-unspoiler/issues
Supported Languages 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": []
}