Twitch VOD Unspoiler
Removes spoilers from Twitch.tv VODs.
Twitch VOD Unspoiler क्या है?
Twitch VOD Unspoiler Kyle Coburn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes spoilers from Twitch.tv VODs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch VOD Unspoiler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
・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.)
एक्सटेंशन की मूल जानकारी
नाम | Twitch VOD Unspoiler |
ID | kjeacdeffkhbcaoobelkgnnlfpaifaoc |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc |
विवरण | Removes spoilers from Twitch.tv VODs. |
फ़ाइल का आकार | 8.68 KB |
स्थापना संख्या | 784 |
वर्तमान संस्करण | 2.5.6 |
अंतिम अपडेट | 2023-11-06 |
प्रकाशन तिथि | 2020-06-06 |
रेटिंग | 4.94/5 कुल 17 रेटिंग्स |
डेवलपर | Kyle Coburn |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ky-is/twitch-vod-unspoiler |
सहायता पृष्ठ URL | https://github.com/ky-is/twitch-vod-unspoiler/issues |
समर्थित भाषाएँ | 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": [] } |