Youtube speed control

This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?

什麼是Youtube speed control?

Youtube speed control是由wwf4開發的Chrome擴展程式,該擴展的主要功能是“This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?”。

擴展截圖

screenshot

下載Youtube speed control擴展crx文件

下載Youtube speed control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ctrl + > - to speed up video
ctrl + < - to slow down video
ctrl + ? - to return x1 speed;                    

擴展基本資訊

名稱 Youtube speed control Youtube speed control
ID gdnknkknodmhgpompjfmhcodhcnamldo
官方網址 https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo
簡介 This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
檔案大小 70.77 KB
安裝次數 623
目前版本 1.1
更新時間 2017-11-10
上架時間 2017-11-10
評分 4.75/5 共 4 次評分
開發者 wwf4
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube speed control",
    "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "all_frames": true
        }
    ]
}