Audio/Video Playback Speed Controller

A simple interface to control the playback speed of audio and video elements in a webpage.

什麼是Audio/Video Playback Speed Controller?

Audio/Video Playback Speed Controller是由Chris Gallegos開發的Chrome擴展程式,該擴展的主要功能是“A simple interface to control the playback speed of audio and video elements in a webpage.”。

擴展截圖

screenshot

下載Audio/Video Playback Speed Controller擴展crx文件

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

擴展使用說明

                        Controls the playback speed of all audio and video elements on a webpage.

Features:
- No permissions required
- 5 preset speeds
- Custom speed slider color coded to indicate fast-forward/slow-motion:
    - Green means normal speed
    - Cyan means fast-forward
    - Red means slow-motion
- Custom speed slider snaps into place for common speeds
- Speed setting is automatically saved for each individual webpage                    

擴展基本資訊

名稱 Audio/Video Playback Speed Controller Audio/Video Playback Speed Controller
ID adibdjpkkmpgfidnjngnfdpcghohhbmm
官方網址 https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm
簡介 A simple interface to control the playback speed of audio and video elements in a webpage.
檔案大小 450 KB
安裝次數 15,128
目前版本 1.1
更新時間 2022-01-10
上架時間 2020-04-30
評分 4.44/5 共 27 次評分
開發者 Chris Gallegos
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL http://gallegosaudio.com/Extensions-Privacy-Policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Audio\/Video Playback Speed Controller",
    "short_name": "Playback Controller",
    "version": "1.1",
    "description": "A simple interface to control the playback speed of audio and video elements in a webpage.",
    "browser_action": {
        "default_title": "Playback Controller",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/fast_forward_16.png",
            "32": "icons\/fast_forward_32.png",
            "64": "icons\/fast_forward_64.png",
            "128": "icons\/fast_forward_128.png",
            "256": "icons\/fast_forward_256.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icons\/fast_forward_16.png",
        "32": "icons\/fast_forward_32.png",
        "64": "icons\/fast_forward_64.png",
        "128": "icons\/fast_forward_128.png",
        "256": "icons\/fast_forward_256.png"
    }
}