YouTube Secret Dark Mode
Enable YouTube's secret dark mode
什么是YouTube Secret Dark Mode?
YouTube Secret Dark Mode是由stemarcoh开发的Chrome扩展程序,该扩展的主要功能是“Enable YouTube's secret dark mode”。
扩展截图
下载YouTube Secret Dark Mode扩展crx文件
下载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" ] } |