YouTube progress in tab (favicon)

Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused

什么是YouTube progress in tab (favicon)?

YouTube progress in tab (favicon)是由Andrei开发的Chrome扩展程序,该扩展的主要功能是“Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused”。

扩展截图

screenshot

下载YouTube progress in tab (favicon)扩展crx文件

下载YouTube progress in tab (favicon)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        0.3:
 - Favicon now changes the white "play" symbol white a "pause" symbol when video is paused/stopped
 - Progress bar for playing videos is now red
 - Added a white background to the progress bar for better visibility

0.2:
 - Paused/stopped videos now have a greyed out progress bar

0.1:
 - Initial release                    

扩展基本信息

名称 YouTube progress in tab (favicon) YouTube progress in tab (favicon)
ID ocihcnaifpkaceaiiokcimplnnlanifp
官方URL https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp
简介 Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused
文件大小 8.26 KB
安装次数 678
当前版本 0.3
更新时间 2018-02-10
上架时间 2018-02-10
评分 2.08/5 共13次评分
开发者 Andrei
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube progress in tab (favicon)",
    "description": "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused",
    "version": "0.3",
    "icons": {
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "functions.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "functions.js",
                "changedefaultfavicon.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "event.js"
    ],
    "permissions": [
        "http:\/\/www.youtube.com\/"
    ]
}