Youtube Short Controller

Youtube Shorts Controller

Apa itu Youtube Short Controller?

Youtube Short Controller adalah ekstensi Chrome yang dikembangkan oleh https://misa198.vercel.app, dan fitur utamanya adalah "Youtube Shorts Controller".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Youtube Short Controller

Unduh file ekstensi Youtube Short 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

                        The extension will add to the Youtube Short player an overlay with video control functions including stop playing, fast forward or rewind the video for a period of time that can be set in the settings popup.                    

Informasi Dasar Ekstensi

Nama Youtube Short Controller Youtube Short Controller
ID fbkgbegeloakaicldjgkamfmpjhlmibi
URL Resmi https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi
Deskripsi Youtube Shorts Controller
Ukuran File 24.95 KB
Jumlah Instalasi 3,214
Versi Saat Ini 1.0.5
Terakhir Diperbarui 2022-10-15
Tanggal Publikasi 2022-04-28
Penilaian 3.94/5 Total 16 Penilaian
Pengembang https://misa198.vercel.app
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/misa198/youtube-shorts-controller
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Youtube Shorts Controller",
    "version": "1.0.5",
    "author": "Thanh Vu",
    "homepage_url": "https:\/\/github.com\/thanhvu1982\/youtube-shorts-controller",
    "manifest_version": 3,
    "name": "Youtube Short Controller",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icons\/icon64.png",
        "default_popup": "popup.html"
    }
}