Twitch Kicker
Adds Kick.com streamers to the "following" section of the Twitch homepage
Cos'è Twitch Kicker?
Twitch Kicker è un'estensione di Chrome sviluppata da sunergraversen, e la sua funzione principale è "Adds Kick.com streamers to the "following" section of the Twitch homepage".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Kicker
Scarica i file di estensione Twitch Kicker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ajfgkbebnlidgpcgaclabhmobhkegnmk |
| URL Ufficiale | https://chromewebstore.google.com/detail/twitch-kicker/ajfgkbebnlidgpcgaclabhmobhkegnmk |
| Descrizione | Adds Kick.com streamers to the "following" section of the Twitch homepage |
| Dimensione del File | 15.08 KB |
| Conteggio Installazioni | 55 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2023-07-10 |
| Data di Pubblicazione | 2023-07-10 |
| Valutazione | 1.00/5 Totale 1 Valutazioni |
| Sviluppatore | sunergraversen |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
}
]
} | |