Audio/Video Playback Speed Controller

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

Cos'è Audio/Video Playback Speed Controller?

Audio/Video Playback Speed Controller è un'estensione di Chrome sviluppata da Chris Gallegos, e la sua funzione principale è "A simple interface to control the playback speed of audio and video elements in a webpage.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Audio/Video Playback Speed Controller

Scarica i file di estensione Audio/Video Playback Speed Controller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Audio/Video Playback Speed Controller Audio/Video Playback Speed Controller
ID adibdjpkkmpgfidnjngnfdpcghohhbmm
URL Ufficiale https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm
Descrizione A simple interface to control the playback speed of audio and video elements in a webpage.
Dimensione del File 450 KB
Conteggio Installazioni 15,128
Versione Corrente 1.1
Ultimo Aggiornamento 2022-01-10
Data di Pubblicazione 2020-04-30
Valutazione 4.44/5 Totale 27 Valutazioni
Sviluppatore Chris Gallegos
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy http://gallegosaudio.com/Extensions-Privacy-Policy
Lingue Supportate 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"
    }
}