Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

Wat is Twitch VOD Unspoiler?

Twitch VOD Unspoiler is een Chrome-extensie ontwikkeld door Kyle Coburn, en de belangrijkste functie is "Removes spoilers from Twitch.tv VODs.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Twitch VOD Unspoiler

Download Twitch VOD Unspoiler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Twitch VOD Unspoiler Twitch VOD Unspoiler
ID kjeacdeffkhbcaoobelkgnnlfpaifaoc
Officiële URL https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc
Beschrijving Removes spoilers from Twitch.tv VODs.
Bestandsgrootte 8.68 KB
Aantal Installaties 784
Huidige Versie 2.5.6
Laatst Bijgewerkt 2023-11-06
Publicatiedatum 2020-06-06
Beoordeling 4.94/5 Totaal 17 Beoordelingen
Ontwikkelaar Kyle Coburn
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ky-is/twitch-vod-unspoiler
Help Pagina-URL https://github.com/ky-is/twitch-vod-unspoiler/issues
Ondersteunde Talen 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": []
}