YouTube Secret Dark Mode
Enable YouTube's secret dark mode
YouTube Secret Dark Mode क्या है?
YouTube Secret Dark Mode stemarcoh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable YouTube's secret dark mode"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Secret Dark Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
UPDATE: As of 2-May-2017 this dark mode is now official in YouTube and you no longer need this extension! See here https://www.youtube.com/new Enables YouTube's secret dark mode by setting a known cookie to enable server-side styling and a new page layout from YouTube itself. Unlike some other extensions, it does not change the HTML or style sheets after they are downloaded. The first time it is enabled and you load youtube.com, it will display a desktop notification indicating the you'll need to reload the page, and enable Dark Mode in the settings menu to see it in dark mode.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Secret Dark Mode |
ID | dlhbodnkplchkjdcbchlbfbbjekjicoo |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-secret-dark-mode/dlhbodnkplchkjdcbchlbfbbjekjicoo |
विवरण | Enable YouTube's secret dark mode |
फ़ाइल का आकार | 101 KB |
स्थापना संख्या | 354 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2017-05-02 |
प्रकाशन तिथि | 2017-05-02 |
रेटिंग | 2.78/5 कुल 9 रेटिंग्स |
डेवलपर | stemarcoh |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Secret Dark Mode", "description": "Enable YouTube's secret dark mode", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "author": "Steven Cohn", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "img\/icon19.png", "default_title": "YouTube Secret Dark Mode" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "cookies", "notifications", "tabs", "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "version": "1.1", "web_accessible_resources": [ "img\/icon48.png" ] } |