YouTube Progress Bar

Adds a progress bar below YouTube videos

什么是YouTube Progress Bar?

YouTube Progress Bar是由bggrund开发的Chrome扩展程序,该扩展的主要功能是“Adds a progress bar below YouTube videos”。

扩展截图

screenshot

下载YouTube Progress Bar扩展crx文件

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

扩展使用说明

                        Adds a permanent progress bar and timestamp beneath YouTube videos and movies

Source: https://github.com/bggrund/YouTubeProgressBar                    

扩展基本信息

名称 YouTube Progress Bar YouTube Progress Bar
ID gcbpebcnhbpcommcmoiaepfaalanakhh
官方URL https://chromewebstore.google.com/detail/youtube-progress-bar/gcbpebcnhbpcommcmoiaepfaalanakhh
简介 Adds a progress bar below YouTube videos
文件大小 5.94 KB
安装次数 35
当前版本 1.0
更新时间 2021-07-19
上架时间 2021-07-18
评分 4.25/5 共4次评分
开发者 bggrund
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/bggrund/YouTubeProgressBar
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Progress Bar",
    "version": "1.0",
    "description": "Adds a progress bar below YouTube videos",
    "icons": {
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "128.png"
    },
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "time.js"
            ],
            "css": [
                "time.css"
            ],
            "run_at": "document_idle"
        }
    ]
}