Video Playback Speed (2x-4x-16x)

Base Level Extension

Co to jest Video Playback Speed (2x-4x-16x)?

Video Playback Speed (2x-4x-16x) to rozszerzenie Chrome opracowane przez Özkan Arslan, a jego główną funkcją jest „Base Level Extension”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Video Playback Speed (2x-4x-16x)

Pobierz pliki rozszerzeń Video Playback Speed (2x-4x-16x) 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

                        This is a simple playback speed control tool. You can set speed easily. It will take new control mechanism soon                    

Podstawowe informacje o rozszerzeniu

Nazwa Video Playback Speed (2x-4x-16x) Video Playback Speed (2x-4x-16x)
ID lakkbciakcddnjmpenppddehppgjmdno
Oficjalny URL https://chromewebstore.google.com/detail/video-playback-speed-2x-4/lakkbciakcddnjmpenppddehppgjmdno
Opis Base Level Extension
Rozmiar pliku 60.1 KB
Liczba instalacji 2,000
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-04-11
Data Publikacji 2021-04-11
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Özkan Arslan
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Playback Speed (2x-4x-16x)",
    "description": "Base Level Extension",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "multimedia.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens_hello.html"
        }
    }
}