Youtube Short Controller

Youtube Shorts Controller

Co to jest Youtube Short Controller?

Youtube Short Controller to rozszerzenie Chrome opracowane przez https://misa198.vercel.app, a jego główną funkcją jest „Youtube Shorts Controller”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube Short Controller

Pobierz pliki rozszerzeń Youtube Short 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Short Controller Youtube Short Controller
ID fbkgbegeloakaicldjgkamfmpjhlmibi
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi
Opis Youtube Shorts Controller
Rozmiar pliku 24.95 KB
Liczba instalacji 3,214
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2022-10-15
Data Publikacji 2022-04-28
Ocena 3.94/5 Łącznie 16 Oceny
Deweloper https://misa198.vercel.app
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/misa198/youtube-shorts-controller
Obsługiwane Języki 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"
    }
}