Video Play Speed Controller

Smoothly slide to adjust video playback speed

什么是Video Play Speed Controller?

Video Play Speed Controller是由Mel Bro开发的Chrome扩展程序,该扩展的主要功能是“Smoothly slide to adjust video playback speed”。

扩展截图

screenshot

下载Video Play Speed Controller扩展crx文件

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

扩展使用说明

                        [Video tutorial]
https://twitter.com/WWG1WWG/status/1208024045549060096

[Purpose]
Now we can only watch live videos of Miles Kwok (Guo Wengui) 😎 on Livestream which interestingly does not provide YouTube-like playback speed adjustment 🙄. For me, a [996](https://github.com/996icu/996.ICU/blob/master/README.md) programmer, 2x playback speed is a must as I don't have much time 😔.

[Features]
* Up to 10x playback speed (useful to skim the ADs 😉).
* Support all the websites including Livestream and YouTube.
* Support adjustments of all the videos on the same page (seems useless 🤣).

✊✊✊ Everything is just beginning 🙏🏻🙏🏻🙏🏻                    

扩展基本信息

名称 Video Play Speed Controller Video Play Speed Controller
ID oeeeoehjmbecilllolfoikdabhapgoac
官方URL https://chrome.google.com/webstore/detail/video-play-speed-controll/oeeeoehjmbecilllolfoikdabhapgoac
简介 Smoothly slide to adjust video playback speed
文件大小 144 KB
安装次数 10,000
当前版本 1.1.0
更新时间 2020-03-07
上架时间 2020-03-07
评分 4.32/5 共19次评分
开发者 Mel Bro
付费类型 free
扩展官网 https://github.com/Pangu2020together/video-play-speed-extension
隐私政策页面URL https://github.com/Pangu2020together/video-play-speed-extension
支持的语言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "homepage_url": "https:\/\/github.com\/Pangu2020together\/video-play-speed-extension",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        ""
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "19": "icons\/19.png",
            "38": "icons\/38.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'  https:\/\/ssl.google-analytics.com; object-src 'self'",
    "version": "1.1.0"
}