Chrome playback speed controller

Controls the playback speed of your youtube or udemy video

什么是Chrome playback speed controller?

Chrome playback speed controller是由Jean Sidharta开发的Chrome扩展程序,该扩展的主要功能是“Controls the playback speed of your youtube or udemy video”。

扩展截图

screenshot

下载Chrome playback speed controller扩展crx文件

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

扩展使用说明

                        If the current tab is not a Youtube or Udemy video, the extension icon will appear grayed-out and will be disabled. Otherwise, clicking it will display a pop-up with a number, a slider and a button named "reset":

- The number displays the current video speed. It will change according to the slider. If you desire a specific speed, you may manually type the number you want. It's maximum precision, however is of 0.1. More decimal numbers will be rounded.

- The slider controls the video speed, going from 0.0 to 15.9

- The reset button will set the video speed to 1.0                    

扩展基本信息

名称 Chrome playback speed controller Chrome playback speed controller
ID jjapmdbeieeoeaebndobpmjfckbimhon
官方URL https://chromewebstore.google.com/detail/chrome-playback-speed-con/jjapmdbeieeoeaebndobpmjfckbimhon
简介 Controls the playback speed of your youtube or udemy video
文件大小 62.85 KB
安装次数 891
当前版本 1.2.1
更新时间 2019-06-05
上架时间 2019-06-04
评分 3.71/5 共7次评分
开发者 Jean Sidharta
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Jeansidharta/Youtube-Playback-speed-extension
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome playback speed controller",
    "description": "Controls the playback speed of your youtube or udemy video",
    "version": "1.2.1",
    "author": "Jean Sidharta Rocha Guzman",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "injectedYoutube.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.udemy.com\/*"
            ],
            "js": [
                "injectedUdemy.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "24": "images\/logo24.png",
            "32": "images\/logo32.png",
            "128": "images\/logo128.png"
        },
        "default_title": "Youtube playback speed",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/logo16.png",
        "24": "images\/logo24.png",
        "32": "images\/logo32.png",
        "128": "images\/logo128.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ]
}