HTML5 Speedy Video

This extension adds fine-grained playback speed control on HTML5 videos.

什麼是HTML5 Speedy Video?

HTML5 Speedy Video是由ricardobcl開發的Chrome擴展程式,該擴展的主要功能是“This extension adds fine-grained playback speed control on HTML5 videos.”。

擴展截圖

screenshot

下載HTML5 Speedy Video擴展crx文件

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

擴展使用說明

                        It also adds these simple keyboard shortcuts:

| Key                         | Action                 |
| ------------------ | ---------------------- |
| control + `+`         | Speed up by 0.2x       |
| control + `-`          | Slow down by 0.2x      |
| control + `0`         | Set speed to 1x        |
| control + `1`          | Set speed to 1x        |
| control + `2`         | Set speed to 2x        |
| control + `3`         | Set speed to 2.5x      |
| control + `4`         | Set speed to 3x        |
| shift + :arrow_left:  | \*\* Rewind 2 seconds  |
| shift + :arrow_right: | \*\* Skip 2 seconds    |
| shift + :arrow_down:  | \*\* Rewind 10 seconds |
| shift + :arrow_up:    | \*\* Skip 10 seconds   |                    

擴展基本資訊

名稱 HTML5 Speedy Video HTML5 Speedy Video
ID caogcofklddclhfojcbmccggaohjngmh
官方網址 https://chromewebstore.google.com/detail/html5-speedy-video/caogcofklddclhfojcbmccggaohjngmh
簡介 This extension adds fine-grained playback speed control on HTML5 videos.
檔案大小 42.12 KB
安裝次數 541
目前版本 2.1
更新時間 2018-09-06
上架時間 2018-09-06
評分 4.00/5 共 3 次評分
開發者 ricardobcl
付費類型 free
擴展官網 https://github.com/ricardobcl/HTML5-Speedy-Video-Extension
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML5 Speedy Video",
    "version": "2.1",
    "description": "This extension adds fine-grained playback speed control on HTML5 videos.",
    "offline_enabled": true,
    "icons": {
        "32": "icons\/Icon-32.png",
        "64": "icons\/Icon-64.png",
        "128": "icons\/Icon-128.png",
        "256": "icons\/Icon-256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.netflix.com\/*",
                "https:\/\/www.netflix.com\/*",
                "http:\/\/vimeo.com\/*",
                "https:\/\/vimeo.com\/*",
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "style.css"
            ],
            "js": [
                "speedy.js"
            ]
        }
    ]
}