Twitch VOD Unspoiler
Removes spoilers from Twitch.tv VODs.
Qu'est-ce que Twitch VOD Unspoiler ?
Twitch VOD Unspoiler est une extension Chrome développée par Kyle Coburn, et sa fonction principale est "Removes spoilers from Twitch.tv VODs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch VOD Unspoiler
Téléchargez les fichiers d'extension Twitch VOD Unspoiler au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
・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.)
Informations de Base sur l'Extension
Nom | Twitch VOD Unspoiler |
ID | kjeacdeffkhbcaoobelkgnnlfpaifaoc |
URL Officiel | https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc |
Description | Removes spoilers from Twitch.tv VODs. |
Taille du Fichier | 8.68 KB |
Nombre d'Installations | 784 |
Version Actuelle | 2.5.6 |
Dernière Mise à Jour | 2023-11-06 |
Date de Publication | 2020-06-06 |
Évaluation | 4.94/5 Total 17 Évaluations |
Développeur | Kyle Coburn |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ky-is/twitch-vod-unspoiler |
URL de la Page d'Aide | https://github.com/ky-is/twitch-vod-unspoiler/issues |
Langues Prises en Charge | 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": [] } |