SkyCrypt Themer

Create themes for SkyCrypt

Co to jest SkyCrypt Themer?

SkyCrypt Themer to rozszerzenie Chrome opracowane przez Cookie_Wookie_7, a jego główną funkcją jest „Create themes for SkyCrypt”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia SkyCrypt Themer

Pobierz pliki rozszerzeń SkyCrypt Themer 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

                        SkyCrypt Themer lets you create and share Themes for SkyCrypt. Whether you are a SkyCrypt developer trying to make a new theme or a normal user that wants to add some color of your own SkyCrypt Themer is for you.                    

Podstawowe informacje o rozszerzeniu

Nazwa SkyCrypt Themer SkyCrypt Themer
ID eeeichgfigdfdmnbmfbeggaolpnhbffc
Oficjalny URL https://chromewebstore.google.com/detail/skycrypt-themer/eeeichgfigdfdmnbmfbeggaolpnhbffc
Opis Create themes for SkyCrypt
Rozmiar pliku 84.36 KB
Liczba instalacji 42
Aktualna Wersja 3.0.0
Ostatnia Aktualizacja 2022-01-28
Data Publikacji 2020-12-26
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Cookie_Wookie_7
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/nstringham/SkyCrypt-Themer
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SkyCrypt Themer",
    "version": "3.0.0",
    "description": "Create themes for SkyCrypt",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "icons": {
        "128": "assets\/logo-128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/sky.shiiyu.moe\/*"
            ],
            "js": [
                "import-contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "contentScript.js"
            ],
            "matches": [
                "https:\/\/sky.shiiyu.moe\/*"
            ]
        }
    ]
}