YouTube Secret Dark Mode
Enable YouTube's secret dark mode
Τι είναι το YouTube Secret Dark Mode;
Το YouTube Secret Dark Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον stemarcoh, και η κύρια λειτουργία του είναι "Enable YouTube's secret dark mode".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouTube Secret Dark Mode
Λήψη αρχείων επέκτασης YouTube Secret Dark Mode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" ] } |