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”。

扩展截图

screenshot

下载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 Random color for YouTube's progress bar
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
电子邮箱 [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"
        ]
    }
}