SkyCrypt Themer
Create themes for SkyCrypt
Cos'è SkyCrypt Themer?
SkyCrypt Themer è un'estensione di Chrome sviluppata da Cookie_Wookie_7, e la sua funzione principale è "Create themes for SkyCrypt".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SkyCrypt Themer
Scarica i file di estensione SkyCrypt Themer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | eeeichgfigdfdmnbmfbeggaolpnhbffc |
| URL Ufficiale | https://chromewebstore.google.com/detail/skycrypt-themer/eeeichgfigdfdmnbmfbeggaolpnhbffc |
| Descrizione | Create themes for SkyCrypt |
| Dimensione del File | 84.36 KB |
| Conteggio Installazioni | 42 |
| Versione Corrente | 3.0.0 |
| Ultimo Aggiornamento | 2022-01-28 |
| Data di Pubblicazione | 2020-12-26 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | Cookie_Wookie_7 |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/nstringham/SkyCrypt-Themer |
| Lingue Supportate | 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\/*"
]
}
]
} | |