Audio/Video Playback Speed Controller

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

Wat is Audio/Video Playback Speed Controller?

Audio/Video Playback Speed Controller is een Chrome-extensie ontwikkeld door Chris Gallegos, en de belangrijkste functie is "A simple interface to control the playback speed of audio and video elements in a webpage.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Audio/Video Playback Speed Controller

Download Audio/Video Playback Speed Controller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Audio/Video Playback Speed Controller Audio/Video Playback Speed Controller
ID adibdjpkkmpgfidnjngnfdpcghohhbmm
Officiële URL https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm
Beschrijving A simple interface to control the playback speed of audio and video elements in a webpage.
Bestandsgrootte 450 KB
Aantal Installaties 15,128
Huidige Versie 1.1
Laatst Bijgewerkt 2022-01-10
Publicatiedatum 2020-04-30
Beoordeling 4.44/5 Totaal 27 Beoordelingen
Ontwikkelaar Chris Gallegos
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina http://gallegosaudio.com/Extensions-Privacy-Policy
Ondersteunde Talen 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"
    }
}