Twitch Kicker

Adds Kick.com streamers to the "following" section of the Twitch homepage

Twitch Kicker là gì?

Twitch Kicker là một tiện ích mở rộng Chrome được phát triển bởi sunergraversen, và tính năng chính của nó là "Adds Kick.com streamers to the "following" section of the Twitch homepage".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch Kicker

Tải xuống các tệp mở rộng Twitch Kicker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch Kicker Twitch Kicker
ID ajfgkbebnlidgpcgaclabhmobhkegnmk
URL Chính Thức https://chromewebstore.google.com/detail/twitch-kicker/ajfgkbebnlidgpcgaclabhmobhkegnmk
Mô tả Adds Kick.com streamers to the "following" section of the Twitch homepage
Kích Thước Tệp 15.08 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-07-10
Ngày Phát Hành 2023-07-10
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển sunergraversen
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}