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.
擴展基本資訊
名稱 | Random color for YouTube's progress bar |
ID | nifjmcelpmkfkofnmllhjhphjlhpdckn |
官方網址 | 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 |
電子郵箱 | [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" ] } } |