Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

Cos'è Twitch VOD Unspoiler?

Twitch VOD Unspoiler è un'estensione di Chrome sviluppata da Kyle Coburn, e la sua funzione principale è "Removes spoilers from Twitch.tv VODs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch VOD Unspoiler

Scarica i file di estensione Twitch VOD Unspoiler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Twitch VOD Unspoiler Twitch VOD Unspoiler
ID kjeacdeffkhbcaoobelkgnnlfpaifaoc
URL Ufficiale https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc
Descrizione Removes spoilers from Twitch.tv VODs.
Dimensione del File 8.68 KB
Conteggio Installazioni 784
Versione Corrente 2.5.6
Ultimo Aggiornamento 2023-11-06
Data di Pubblicazione 2020-06-06
Valutazione 4.94/5 Totale 17 Valutazioni
Sviluppatore Kyle Coburn
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ky-is/twitch-vod-unspoiler
URL della Pagina di Aiuto https://github.com/ky-is/twitch-vod-unspoiler/issues
Lingue Supportate 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": []
}