Twitch Kicker
Adds Kick.com streamers to the "following" section of the Twitch homepage
Twitch Kickerとは何ですか?
Twitch Kickerはsunergraversenによって開発されたChromeの拡張機能で、その主な機能は「Adds Kick.com streamers to the "following" section of the Twitch homepage」です。
拡張機能のスクリーンショット
Twitch Kicker拡張機能のCRXファイルをダウンロード
Twitch Kicker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds your Kick.com followed streamers to the following section of your Twitch landing-page. No login required! Just log into Kick.com as usual, follow your favorite streamers, and see them appear on Twitch. 拡張機能の基本情報
| 名前 | |
| ID | ajfgkbebnlidgpcgaclabhmobhkegnmk |
| 公式URL | https://chromewebstore.google.com/detail/twitch-kicker/ajfgkbebnlidgpcgaclabhmobhkegnmk |
| 説明 | Adds Kick.com streamers to the "following" section of the Twitch homepage |
| ファイルサイズ | 15.08 KB |
| インストール数 | 55 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2023-07-10 |
| 公開日 | 2023-07-10 |
| 評価 | 1.00/5 合計 1 レビュー |
| 開発者 | sunergraversen |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitch Kicker",
"description": "Adds Kick.com streamers to the \"following\" section of the Twitch homepage",
"homepage_url": "https:\/\/suneg.site",
"version": "1.0.1",
"manifest_version": 3,
"minimum_chrome_version": "111",
"icons": {
"16": "kickLoggedIn16.png",
"48": "kickLoggedIn48.png",
"128": "kickLoggedIn128.png"
},
"action": {
"default_icon": {
"16": "kickLoggedIn16.png",
"48": "kickLoggedIn48.png",
"128": "kickLoggedIn128.png"
}
},
"content_scripts": [
{
"run_at": "document_idle",
"js": [
"after.js"
],
"matches": [
"https:\/\/*.twitch.tv\/*",
"http:\/\/*.twitch.tv\/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "corsbypass",
"enabled": false,
"path": "corsrules.json"
}
]
},
"permissions": [
"cookies",
"declarativeNetRequestWithHostAccess",
"declarativeNetRequestFeedback"
],
"host_permissions": [
"https:\/\/*.twitch.tv\/*",
"http:\/\/*.twitch.tv\/*",
"http:\/\/kick.com\/*",
"https:\/\/kick.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"tagToInject.html"
],
"matches": [
"https:\/\/*.twitch.tv\/*"
],
"extension_ids": [
"pbiilmjaijfkbelndicpeccoclcmghak"
]
}
]
} | |