Kick Plus
improvements to kick.com
Kick Plusとは何ですか?
Kick PlusはEnzon1kによって開発されたChromeの拡張機能で、その主な機能は「improvements to kick.com」です。
拡張機能のスクリーンショット
Kick Plus拡張機能のCRXファイルをダウンロード
Kick Plus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Major Features include:
-clickable names in chat to open a chatbox with buttons such as follow and mod.
-Theatre mode
-settings menu
Minor Features:
-username in header 拡張機能の基本情報
| 名前 | |
| ID | ikinhlhehgjfpmipnoilnailmgoaeppk |
| 公式URL | https://chromewebstore.google.com/detail/kick-plus/ikinhlhehgjfpmipnoilnailmgoaeppk |
| 説明 | improvements to kick.com |
| ファイルサイズ | 121 KB |
| インストール数 | 1,307 |
| 現在のバージョン | 1.8.4 |
| 最終更新日 | 2023-01-17 |
| 公開日 | 2022-12-12 |
| 評価 | 3.86/5 合計 7 レビュー |
| 開発者 | Enzon1k |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://linktr.ee/enzon1k |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Kick Plus",
"version": "1.8.4",
"description": "improvements to kick.com",
"icons": {
"128": "icon.png",
"48": "icon.png",
"16": "icon.png"
},
"permissions": [
"cookies",
"storage"
],
"background": {
"service_worker": ".\/dist\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.kick.com\/*"
],
"js": [
".\/dist\/content-scripts\/main.js"
]
},
{
"css": [
".\/styles\/main.css",
".\/styles\/settings.css",
".\/styles\/userChatBox.css"
],
"matches": [
"*:\/\/*.kick.com\/*"
]
}
],
"host_permissions": [
"*:\/\/*.kick.com\/*"
]
} | |