Youtube Theme
Fast change between dark and light Youtube themes
什麼是Youtube Theme?
Youtube Theme是由Light Alex開發的Chrome擴展程式,該擴展的主要功能是“Fast change between dark and light Youtube themes”。
擴展截圖
下載Youtube Theme擴展crx文件
下載Youtube Theme擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Fast change between dark and light YouTube design. Just in one click. 擴展基本資訊
| 名稱 | |
| ID | jkojliciihhmhfnioceoaahmmhhmhjdi |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-theme/jkojliciihhmhfnioceoaahmmhhmhjdi |
| 簡介 | Fast change between dark and light Youtube themes |
| 檔案大小 | 42.94 KB |
| 安裝次數 | 8,961 |
| 目前版本 | 1.0.4 |
| 更新時間 | 2020-07-14 |
| 上架時間 | 2020-07-14 |
| 評分 | 4.49/5 共 45 次評分 |
| 開發者 | Light Alex |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://addons.lightalex.com/?source=chrome_store |
| 支援的語言 | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Youtube Theme",
"short_name": "__MSG_description__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "1.0.4",
"author": "Light Alex",
"icons": {
"48": "icons\/48.png",
"64": "icons\/64.png",
"128": "icons\/128.png",
"256": "icons\/256.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/popup_dark_16.png",
"24": "icons\/popup_dark_24.png",
"32": "icons\/popup_dark_32.png"
}
},
"background": {
"scripts": [
"files\/scripts\/background.js"
]
},
"permissions": [
"tabs",
"http:\/\/youtube.com\/*",
"https:\/\/youtube.com\/*",
"http:\/\/*.youtube.com\/*",
"https:\/\/*.youtube.com\/*",
"cookies",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/youtube.com\/*",
"*:\/\/www.youtube.com\/*"
],
"css": [
"files\/styles\/main.css"
],
"js": [
"files\/scripts\/preload.js"
],
"run_at": "document_start"
}
]
} | |