Audio/Video Playback Speed Controller

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

Qu'est-ce que Audio/Video Playback Speed Controller ?

Audio/Video Playback Speed Controller est une extension Chrome développée par Chris Gallegos, et sa fonction principale est "A simple interface to control the playback speed of audio and video elements in a webpage.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Audio/Video Playback Speed Controller

Téléchargez les fichiers d'extension Audio/Video Playback Speed Controller au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Audio/Video Playback Speed Controller Audio/Video Playback Speed Controller
ID adibdjpkkmpgfidnjngnfdpcghohhbmm
URL Officiel 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.
Taille du Fichier 450 KB
Nombre d'Installations 15,128
Version Actuelle 1.1
Dernière Mise à Jour 2022-01-10
Date de Publication 2020-04-30
Évaluation 4.44/5 Total 27 Évaluations
Développeur Chris Gallegos
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité http://gallegosaudio.com/Extensions-Privacy-Policy
Langues Prises en Charge 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"
    }
}