SkyCrypt Themer
Create themes for SkyCrypt
Что такое SkyCrypt Themer?
SkyCrypt Themer - это расширение Chrome, разработанное Cookie_Wookie_7, и его основная функция - "Create themes for SkyCrypt".
Снимки экрана расширения
Скачать файл CRX расширения SkyCrypt Themer
Скачайте файлы расширений SkyCrypt Themer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | eeeichgfigdfdmnbmfbeggaolpnhbffc |
Официальный URL | https://chromewebstore.google.com/detail/skycrypt-themer/eeeichgfigdfdmnbmfbeggaolpnhbffc |
Описание | Create themes for SkyCrypt |
Размер файла | 84.36 KB |
Количество установок | 42 |
Текущая Версия | 3.0.0 |
Последнее Обновление | 2022-01-28 |
Дата публикации | 2020-12-26 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Cookie_Wookie_7 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/nstringham/SkyCrypt-Themer |
Поддерживаемые языки | 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\/*" ] } ] } |