Video Speed Control HTML5

Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.

Qu'est-ce que Video Speed Control HTML5 ?

Video Speed Control HTML5 est une extension Chrome développée par admin, et sa fonction principale est "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.".

Captures d'Écran de l'Extension

screenshot

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

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

                        Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.                    

Informations de Base sur l'Extension

Nom Video Speed Control HTML5 Video Speed Control HTML5
ID pgeeiieaichainfdhpdanloeimnpofhl
URL Officiel https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl
Description Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Taille du Fichier 60.54 KB
Nombre d'Installations 884
Version Actuelle 1.1.2
Dernière Mise à Jour 2022-10-23
Date de Publication 2022-10-23
Évaluation 5.00/5 Total 2 Évaluations
Développeur admin
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Speed Control HTML5",
    "version": "1.1.2",
    "manifest_version": 3,
    "minimum_chrome_version": "89",
    "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.",
    "icons": {
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "permissions": [
        "storage",
        "webRequest",
        "tabs"
    ],
    "options_ui": {
        "page": "html5\/options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": {
            "64": "images\/icon64.png"
        },
        "default_popup": "html5\/popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "match_about_blank": true,
            "exclude_matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/hangouts.google.com\/*",
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "inject\/inject.css"
            ],
            "js": [
                "inject\/inject.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ct.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ]
}