Netflix Progress Bar

Adds a permanent progress bar below Netflix videos. Works in fullscreen. Source: https://github.com/bggrund/NetflixProgressBar

什么是Netflix Progress Bar?

Netflix Progress Bar是由bggrund开发的Chrome扩展程序,该扩展的主要功能是“Adds a permanent progress bar below Netflix videos. Works in fullscreen. Source: https://github.com/bggrund/NetflixProgressBar”。

扩展截图

screenshot

下载Netflix Progress Bar扩展crx文件

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

扩展使用说明

                        Adds a permanent progress bar below Netflix videos. Works in fullscreen.

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

扩展基本信息

名称 Netflix Progress Bar Netflix Progress Bar
ID fgfpffcjpmpnlfkibffdeddjohgbieka
官方URL https://chromewebstore.google.com/detail/netflix-progress-bar/fgfpffcjpmpnlfkibffdeddjohgbieka
简介 Adds a permanent progress bar below Netflix videos. Works in fullscreen. Source: https://github.com/bggrund/NetflixProgressBar
文件大小 5.56 KB
安装次数 35
当前版本 1.0
更新时间 2021-07-19
上架时间 2021-07-18
开发者 bggrund
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/bggrund/NetflixProgressBar
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Progress Bar",
    "version": "1.0",
    "permissions": [
        "*:\/\/*.netflix.com\/*"
    ],
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "run_at": "document_idle"
        }
    ]
}