Random color for YouTube's progress bar
Change red color for a random of the YouTube's progress bar
Random color for YouTube's progress barとは何ですか?
Random color for YouTube's progress barはAxel Juinoによって開発されたChromeの拡張機能で、その主な機能は「Change red color for a random of the YouTube's progress bar」です。
拡張機能のスクリーンショット
Random color for YouTube's progress bar拡張機能のCRXファイルをダウンロード
Random color for YouTube's progress bar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension change the video's progress bar on YouTube with a random color. 拡張機能の基本情報
| 名前 | |
| ID | nifjmcelpmkfkofnmllhjhphjlhpdckn |
| 公式URL | https://chromewebstore.google.com/detail/random-color-for-youtubes/nifjmcelpmkfkofnmllhjhphjlhpdckn |
| 説明 | Change red color for a random of the YouTube's progress bar |
| ファイルサイズ | 25.48 KB |
| インストール数 | 610 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2020-12-21 |
| 公開日 | 2020-11-29 |
| 評価 | 4.00/5 合計 5 レビュー |
| 開発者 | Axel Juino |
| Eメール | [email protected] |
| 支払い方法 | free |
| ヘルプページのURL | https://axelouuu.fr |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Random color for YouTube's progress bar",
"description": "Change red color for a random of the YouTube's progress bar",
"version": "1.1",
"content_scripts": [
{
"js": [
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"browser_action": {
"default_icon": "img\/icon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "img\/icon_128.png"
},
"background": {
"scripts": [
"script.js"
]
}
} | |