YouTube DeSpoiler
Hides total video length and some other information on YouTube.
YouTube DeSpoiler क्या है?
YouTube DeSpoiler santaworkshopdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides total video length and some other information on YouTube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube DeSpoiler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Hides total video length and some other information on YouTube. This extension is mainly intended for eSports VODs, where the total length of the match, or the time remaining, can be a spoiler by itself. Features: - Hides total video length in main player, search results, and suggestions. - Hides progress bar in main player and search results. - Hides suggestion titles and thumbnails (hover to reveal). - Since seeking by progress bar is no longer possible, adds seek buttons to the main player. > Note that you can still use YouTube's ←, →, J and L shortcuts as normal. - Toggle the extension by clicking the extension icon. - Toggle the progress bar for current video only by clicking the hourglass button in main player.
एक्सटेंशन की मूल जानकारी
नाम | YouTube DeSpoiler |
ID | fmihhkhicphlbbfdclmmjdohegbplgmo |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-despoiler/fmihhkhicphlbbfdclmmjdohegbplgmo |
विवरण | Hides total video length and some other information on YouTube. |
फ़ाइल का आकार | 33.07 KB |
स्थापना संख्या | 74 |
वर्तमान संस्करण | 0.4.2 |
अंतिम अपडेट | 2021-05-26 |
प्रकाशन तिथि | 2020-10-30 |
रेटिंग | 4.67/5 कुल 3 रेटिंग्स |
डेवलपर | santaworkshopdev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube DeSpoiler", "description": "Hides total video length and some other information on YouTube.", "version": "0.4.2", "icons": { "16": "favicon\/on\/favicon-16x16.png", "32": "favicon\/on\/favicon-32x32.png", "128": "favicon\/on\/favicon-128x128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "despoiler.js" ], "run_at": "document_start" } ], "browser_action": { "default_title": "YouTube DeSpoiler" }, "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "despoiler-site.css", "despoiler-video.css" ] } |