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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Twitch Kicker Twitch Kicker
ID ajfgkbebnlidgpcgaclabhmobhkegnmk
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}