YouTube Zen Mode
Get rid of all the distractions on YouTube
YouTube Zen Mode क्या है?
YouTube Zen Mode Marbl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get rid of all the distractions on YouTube"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Zen Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Zen mode extension removes distractions from YouTube. May it be a content such as a news feed, notifications or suggestions of similar videos to the one you are currently watching on youtube.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Zen Mode |
ID | dgdfifjibepijpnledojfgcaggckaclb |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-zen-mode/dgdfifjibepijpnledojfgcaggckaclb |
विवरण | Get rid of all the distractions on YouTube |
फ़ाइल का आकार | 399 KB |
स्थापना संख्या | 212 |
वर्तमान संस्करण | 2.1.2 |
अंतिम अपडेट | 2023-01-10 |
प्रकाशन तिथि | 2020-11-14 |
रेटिंग | 5.00/5 कुल 6 रेटिंग्स |
डेवलपर | Marbl |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Zen Mode", "version": "2.1.2", "description": "Get rid of all the distractions on YouTube", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage", "tabs", "webNavigation", "webRequest" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_title": "Zen", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "background": { "service_worker": "background.js" }, "browser_specific_settings": { "gecko": { "id": "{80b1557a-ec9a-4e6e-8877-8aa4f146c413}" } }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube\/main.js" ], "css": [ "youtube\/youtube.css" ], "run_at": "document_end" } ] } |