Video speed adjuster

Fast-forward, rewind, adjust playback speed on any video

什麼是Video speed adjuster?

Video speed adjuster是由Binita Chalise開發的Chrome擴展程式,該擴展的主要功能是“Fast-forward, rewind, adjust playback speed on any video”。

擴展截圖

screenshot

下載Video speed adjuster擴展crx文件

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

擴展使用說明

                        Video speed adjuster adds controls to web videos that allow to increase or decrease playback speed.

Some features:
- Change speed from 0.25x up to 10x
- You can use keyboard shortcuts as well as control panel over the video 

Getting started: Open a video and find speed controls, or use the “s” and “d” buttons on your keyboard.                    

擴展基本資訊

名稱 Video speed adjuster Video speed adjuster
ID fhdjoapblekhhphgjjoehakeiefdbiep
官方網址 https://chrome.google.com/webstore/detail/video-speed-adjuster/fhdjoapblekhhphgjjoehakeiefdbiep
簡介 Fast-forward, rewind, adjust playback speed on any video
檔案大小 429 KB
安裝次數 600,000
目前版本 3.2.2
更新時間 2021-07-09
上架時間 2021-05-12
評分 4.19/5 共 31 次評分
開發者 Binita Chalise
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://docs.google.com/document/d/1NM2uTWYzkAg4v6oAzj20jdIbR3CLDlYXuuEBbMqVozI/edit?usp=sharing
支援的語言 id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "3.2.2",
    "offline_enabled": true,
    "icons": {
        "128": "icon-128.png",
        "48": "icon-48.png",
        "16": "icon-16.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "inject_style.css"
            ],
            "js": [
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "l-arrow.png",
        "r-arrow.png"
    ],
    "default_locale": "en",
    "content_security_policy": "script-src 'self' https:\/\/*.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage",
        ""
    ]
}