Shortcuts for video acceleration

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

Shortcuts for video acceleration क्या है?

Shortcuts for video acceleration ABrill द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows to natively specify shortcuts for speed up or slow down active video"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Shortcuts for video acceleration एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Shortcuts for video acceleration Shortcuts for video acceleration
ID chaknloimoaeonfpfkdoielpnhdfleaf
आधिकारिक URL https://chromewebstore.google.com/detail/shortcuts-for-video-accel/chaknloimoaeonfpfkdoielpnhdfleaf
विवरण Allows to natively specify shortcuts for speed up or slow down active video
फ़ाइल का आकार 41.69 KB
स्थापना संख्या 83
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-04-29
प्रकाशन तिथि 2020-04-26
डेवलपर ABrill
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/andrey-brill/a-chrome-extensions/tree/master/video-accelerator
सहायता पृष्ठ URL https://github.com/andrey-brill/a-chrome-extensions/issues
समर्थित भाषाएँ 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"
            }
        }
    }
}