Video Speed Up

Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.

什麼是Video Speed Up?

Video Speed Up是由no9開發的Chrome擴展程式,該擴展的主要功能是“Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.”。

擴展截圖

screenshot

下載Video Speed Up擴展crx文件

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

擴展使用說明

                        The extension's function is to accelerate video playback and slow it down below normal speed. It works with video and audio elements on websites that support it. To activate the extension, simply left-click on its icon. Right-clicking on the extension's icon reveals a menu with additional options that may be useful in certain situations.

Known issue:

- On some webpages, it is not possible to adjust the speed of the played elements. This is due to how the specific page is designed.

If you find this extension useful, you may consider supporting the author with a donation of any amount.                    

擴展基本資訊

名稱 Video Speed Up Video Speed Up
ID glehbmcdknkgdibnilmbinohdnmjggoo
官方網址 https://chromewebstore.google.com/detail/video-speed-up/glehbmcdknkgdibnilmbinohdnmjggoo
簡介 Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.
檔案大小 45.53 KB
安裝次數 1,253
目前版本 1.5.7.5
更新時間 2023-07-26
上架時間 2019-10-30
評分 2.80/5 共 5 次評分
開發者 no9
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Up",
    "description": "Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.",
    "version": "1.5.7.5",
    "author": "[email protected]",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "VSUScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/\/*\/"
    ],
    "action": {
        "default_icon": "icon19.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    }
}