Video Speed Controller

Control video speed of video's on any page with the simple chrome extension

Co to jest Video Speed Controller?

Video Speed Controller to rozszerzenie Chrome opracowane przez videospeedcontrollerpro, a jego główną funkcją jest „Control video speed of video's on any page with the simple chrome extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Video Speed Controller

Pobierz pliki rozszerzeń Video Speed Controller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Control video speed of video's on any page with the simple chrome extension                    

Podstawowe informacje o rozszerzeniu

Nazwa Video Speed Controller Video Speed Controller
ID gmbmliclljegcljoncmaoccifcfmkaem
Oficjalny URL https://chromewebstore.google.com/detail/video-speed-controller/gmbmliclljegcljoncmaoccifcfmkaem
Opis Control video speed of video's on any page with the simple chrome extension
Rozmiar pliku 66.69 KB
Liczba instalacji 3,218
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-06-29
Data Publikacji 2023-06-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper videospeedcontrollerpro
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Controller",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icon128.png",
            "64": "icon128.png",
            "128": "icon128.png"
        }
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "32": "icon128.png",
        "64": "icon128.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "commands": {
        "increase-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up"
            },
            "description": "Increase video speed"
        },
        "decrease-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Decrease video speed"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}