Audio/Video Playback Speed Controller

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

What is Audio/Video Playback Speed Controller?

Audio/Video Playback Speed Controller is a Chrome extension developed by Chris Gallegos, and its main feature is "A simple interface to control the playback speed of audio and video elements in a webpage.".

Extension Screenshots

screenshot

Download Audio/Video Playback Speed Controller Extension CRX File

Download Audio/Video Playback Speed Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Audio/Video Playback Speed Controller Audio/Video Playback Speed Controller
ID adibdjpkkmpgfidnjngnfdpcghohhbmm
Official URL https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm
Description A simple interface to control the playback speed of audio and video elements in a webpage.
File Size 450 KB
Installation Count 15,128
Current Version 1.1
Last Updated 2022-01-10
Publish Date 2020-04-30
Rating 4.44/5 Total 27 Ratings
Developer Chris Gallegos
Email [email protected]
Payment Type free
Privacy Policy Page URL http://gallegosaudio.com/Extensions-Privacy-Policy
Supported Languages 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"
    }
}