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 |
| 公式URL | 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 |
| Eメール | [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"
}
]
} | |