SkyCrypt Themer
Create themes for SkyCrypt
Vad är SkyCrypt Themer?
SkyCrypt Themer är en Chrome-tillägg utvecklad av Cookie_Wookie_7, och dess huvudfunktion är "Create themes for SkyCrypt".
Tilläggsskärmbilder
Ladda ner SkyCrypt Themer-förlängningens CRX-fil
Ladda ner SkyCrypt Themer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | eeeichgfigdfdmnbmfbeggaolpnhbffc |
Officiell webbadress | https://chromewebstore.google.com/detail/skycrypt-themer/eeeichgfigdfdmnbmfbeggaolpnhbffc |
Beskrivning | Create themes for SkyCrypt |
Filstorlek | 84.36 KB |
Antal Installationer | 42 |
Aktuell Version | 3.0.0 |
Senast Uppdaterad | 2022-01-28 |
Publiceringsdatum | 2020-12-26 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Cookie_Wookie_7 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/nstringham/SkyCrypt-Themer |
Stödda Språk | 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\/*" ] } ] } |