Twitch Kicker
Adds Kick.com streamers to the "following" section of the Twitch homepage
O que é Twitch Kicker?
Twitch Kicker é uma extensão do Chrome desenvolvida por sunergraversen, e sua principal característica é "Adds Kick.com streamers to the "following" section of the Twitch homepage".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch Kicker
Baixe arquivos de extensão Twitch Kicker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Twitch Kicker |
ID | ajfgkbebnlidgpcgaclabhmobhkegnmk |
URL Oficial | https://chromewebstore.google.com/detail/twitch-kicker/ajfgkbebnlidgpcgaclabhmobhkegnmk |
Descrição | Adds Kick.com streamers to the "following" section of the Twitch homepage |
Tamanho do Arquivo | 15.08 KB |
Contagem de Instalações | 55 |
Versão Atual | 1.0.1 |
Última Atualização | 2023-07-10 |
Data de Publicação | 2023-07-10 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | sunergraversen |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |