Video Speed Controller

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

Apa itu Video Speed Controller?

Video Speed Controller adalah ekstensi Chrome yang dikembangkan oleh videospeedcontrollerpro, dan fitur utamanya adalah "Control video speed of video's on any page with the simple chrome extension".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Video Speed Controller

Unduh file ekstensi Video Speed Controller dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Video Speed Controller Video Speed Controller
ID gmbmliclljegcljoncmaoccifcfmkaem
URL Resmi https://chromewebstore.google.com/detail/video-speed-controller/gmbmliclljegcljoncmaoccifcfmkaem
Deskripsi Control video speed of video's on any page with the simple chrome extension
Ukuran File 66.69 KB
Jumlah Instalasi 3,218
Versi Saat Ini 1.1
Terakhir Diperbarui 2023-06-29
Tanggal Publikasi 2023-06-20
Penilaian 5.00/5 Total 1 Penilaian
Pengembang videospeedcontrollerpro
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}