Twitch VOD Unspoiler
Removes spoilers from Twitch.tv VODs.
Vad är Twitch VOD Unspoiler?
Twitch VOD Unspoiler är en Chrome-tillägg utvecklad av Kyle Coburn, och dess huvudfunktion är "Removes spoilers from Twitch.tv VODs.".
Tilläggsskärmbilder
Ladda ner Twitch VOD Unspoiler-förlängningens CRX-fil
Ladda ner Twitch VOD Unspoiler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
・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.)
Grundläggande Information om Tillägg
Namn | Twitch VOD Unspoiler |
ID | kjeacdeffkhbcaoobelkgnnlfpaifaoc |
Officiell webbadress | https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc |
Beskrivning | Removes spoilers from Twitch.tv VODs. |
Filstorlek | 8.68 KB |
Antal Installationer | 784 |
Aktuell Version | 2.5.6 |
Senast Uppdaterad | 2023-11-06 |
Publiceringsdatum | 2020-06-06 |
Betyg | 4.94/5 Totalt 17 Betyg |
Utvecklare | Kyle Coburn |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/ky-is/twitch-vod-unspoiler |
Hjälpsida URL | https://github.com/ky-is/twitch-vod-unspoiler/issues |
Stödda Språk | 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": [] } |