Video Speed Control HTML5

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

Video Speed Control HTML5 क्या है?

Video Speed Control HTML5 admin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons."।

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

screenshot

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

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

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

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

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

नाम Video Speed Control HTML5 Video Speed Control HTML5
ID pgeeiieaichainfdhpdanloeimnpofhl
आधिकारिक URL https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl
विवरण Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
फ़ाइल का आकार 60.54 KB
स्थापना संख्या 884
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2022-10-23
प्रकाशन तिथि 2022-10-23
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर admin
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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:\/\/\/*"
            ]
        }
    ]
}