Youtube Darkmode
Enable Youtube's new Material UI theme
什麼是Youtube Darkmode?
Youtube Darkmode是由Jack Hanford開發的Chrome擴展程式,該擴展的主要功能是“Enable Youtube's new Material UI theme”。
擴展截圖
下載Youtube Darkmode擴展crx文件
下載Youtube Darkmode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Enable Youtube's new Material Design mode, which also enables Youtube's Darkmode feature. This chrome extension puts users in the A/B test for the new Youtube UI Github: https://github.com/hanford/youtube-darkmode
擴展基本資訊
名稱 | |
ID | ajngaombckgmodafdnmipfmcfgppnnhp |
官方網址 | https://chrome.google.com/webstore/detail/youtube-darkmode/ajngaombckgmodafdnmipfmcfgppnnhp |
簡介 | Enable Youtube's new Material UI theme |
檔案大小 | 8.11 KB |
安裝次數 | 570 |
目前版本 | 0.0.1 |
更新時間 | 2017-05-17 |
上架時間 | 2017-05-17 |
評分 | 2.00/5 共 4 次評分 |
開發者 | Jack Hanford |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Darkmode", "version": "0.0.1", "manifest_version": 2, "description": "Enable Youtube's new Material UI theme", "icons": { "16": "icon.png", "32": "icon.png", "128": "icon.png" }, "permissions": [ "storage", "*:\/\/youtube.com\/*" ], "browser_action": { "default_icon": "icon.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "cookie-setter.js" ], "run_at": "document_start", "all_frames": true } ] } |