Shortcuts for video acceleration

Allows to natively specify shortcuts for speed up or slow down active video

Qu'est-ce que Shortcuts for video acceleration ?

Shortcuts for video acceleration est une extension Chrome développée par ABrill, et sa fonction principale est "Allows to natively specify shortcuts for speed up or slow down active video".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Shortcuts for video acceleration

Téléchargez les fichiers d'extension Shortcuts for video acceleration 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 allows to natively specify shortcuts for video acceleration in Chrome:
 - Speed up/slow down
 - Play video on max possible playback speed
 - Reset speed to usual 

1. Open source
2. Uses native shortcuts manager for extensions in Chrome
3. Almost no-code extension (less than 100 lines)
4. Pure and clean                    

Informations de Base sur l'Extension

Nom Shortcuts for video acceleration Shortcuts for video acceleration
ID chaknloimoaeonfpfkdoielpnhdfleaf
URL Officiel https://chromewebstore.google.com/detail/shortcuts-for-video-accel/chaknloimoaeonfpfkdoielpnhdfleaf
Description Allows to natively specify shortcuts for speed up or slow down active video
Taille du Fichier 41.69 KB
Nombre d'Installations 83
Version Actuelle 1.0
Dernière Mise à Jour 2020-04-29
Date de Publication 2020-04-26
Développeur ABrill
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/andrey-brill/a-chrome-extensions/tree/master/video-accelerator
URL de la Page d'Aide https://github.com/andrey-brill/a-chrome-extensions/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortcuts for video acceleration",
    "description": "Allows to natively specify shortcuts for speed up or slow down active video",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "images\/video-accelerator-16px.png",
        "32": "images\/video-accelerator-32px.png",
        "64": "images\/video-accelerator-64px.png",
        "128": "images\/video-accelerator-128px.png",
        "256": "images\/video-accelerator-256px.png",
        "512": "images\/video-accelerator-512px.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_title": "Open hotkeys bindings"
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "video-speed-up": {
            "description": "Speed up active video",
            "suggested_key": {
                "default": "Alt+Up"
            }
        },
        "video-slow-down": {
            "description": "Slow down active video",
            "suggested_key": {
                "default": "Alt+Down"
            }
        },
        "video-reset-speed": {
            "description": "Reset playback speed",
            "suggested_key": {
                "default": "Alt+Shift+Down"
            }
        },
        "video-max-speed": {
            "description": "Maximize playback speed",
            "suggested_key": {
                "default": "Alt+Shift+Up"
            }
        }
    }
}