Video Speed Up

Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.

Qu'est-ce que Video Speed Up ?

Video Speed Up est une extension Chrome développée par no9, et sa fonction principale est "Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.".

Captures d'Écran de l'Extension

screenshot

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

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

                        The extension's function is to accelerate video playback and slow it down below normal speed. It works with video and audio elements on websites that support it. To activate the extension, simply left-click on its icon. Right-clicking on the extension's icon reveals a menu with additional options that may be useful in certain situations.

Known issue:

- On some webpages, it is not possible to adjust the speed of the played elements. This is due to how the specific page is designed.

If you find this extension useful, you may consider supporting the author with a donation of any amount.                    

Informations de Base sur l'Extension

Nom Video Speed Up Video Speed Up
ID glehbmcdknkgdibnilmbinohdnmjggoo
URL Officiel https://chromewebstore.google.com/detail/video-speed-up/glehbmcdknkgdibnilmbinohdnmjggoo
Description Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.
Taille du Fichier 45.53 KB
Nombre d'Installations 1,253
Version Actuelle 1.5.7.5
Dernière Mise à Jour 2023-07-26
Date de Publication 2019-10-30
Évaluation 2.80/5 Total 5 Évaluations
Développeur no9
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Up",
    "description": "Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.",
    "version": "1.5.7.5",
    "author": "[email protected]",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "VSUScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/\/*\/"
    ],
    "action": {
        "default_icon": "icon19.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    }
}