Video Speed Controller

Control video speed of video's on any page with the simple chrome extension

Qu'est-ce que Video Speed Controller ?

Video Speed Controller est une extension Chrome développée par videospeedcontrollerpro, et sa fonction principale est "Control video speed of video's on any page with the simple chrome extension".

Captures d'Écran de l'Extension

screenshot
screenshot

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

Téléchargez les fichiers d'extension Video 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

                        Control video speed of video's on any page with the simple chrome extension                    

Informations de Base sur l'Extension

Nom Video Speed Controller Video Speed Controller
ID gmbmliclljegcljoncmaoccifcfmkaem
URL Officiel https://chromewebstore.google.com/detail/video-speed-controller/gmbmliclljegcljoncmaoccifcfmkaem
Description Control video speed of video's on any page with the simple chrome extension
Taille du Fichier 66.69 KB
Nombre d'Installations 3,218
Version Actuelle 1.1
Dernière Mise à Jour 2023-06-29
Date de Publication 2023-06-20
Évaluation 5.00/5 Total 1 Évaluations
Développeur videospeedcontrollerpro
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Controller",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icon128.png",
            "64": "icon128.png",
            "128": "icon128.png"
        }
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "32": "icon128.png",
        "64": "icon128.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "commands": {
        "increase-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up"
            },
            "description": "Increase video speed"
        },
        "decrease-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Decrease video speed"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}