Twitch Kicker

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

Τι είναι το Twitch Kicker;

Το Twitch Kicker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sunergraversen, και η κύρια λειτουργία του είναι "Adds Kick.com streamers to the "following" section of the Twitch homepage".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Twitch Kicker

Λήψη αρχείων επέκτασης 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
Επίσημο 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
Ηλεκτρονικό ταχυδρομείο [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"
            ]
        }
    ]
}