SkyCrypt Themer
Create themes for SkyCrypt
SkyCrypt Themerとは何ですか?
SkyCrypt ThemerはCookie_Wookie_7によって開発されたChromeの拡張機能で、その主な機能は「Create themes for SkyCrypt」です。
拡張機能のスクリーンショット
SkyCrypt Themer拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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\/*"
]
}
]
} | |