Auto Claim Twitch Channel Points
Will automatically click the button for claiming channel points on Twitch.
O que é Auto Claim Twitch Channel Points?
Auto Claim Twitch Channel Points é uma extensão do Chrome desenvolvida por mikeyaworski, e sua principal característica é "Will automatically click the button for claiming channel points on Twitch.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Auto Claim Twitch Channel Points
Baixe arquivos de extensão Auto Claim Twitch Channel Points 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
A very simple script which runs in the background on Twitch pages. It automatically clicks the button to claim channel points on Twitch when it appears. Source code: https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points
Informações Básicas da Extensão
Nome | Auto Claim Twitch Channel Points |
ID | jfkamlikjbpcgjcdicpjaofammhfgjjh |
URL Oficial | https://chromewebstore.google.com/detail/auto-claim-twitch-channel/jfkamlikjbpcgjcdicpjaofammhfgjjh |
Descrição | Will automatically click the button for claiming channel points on Twitch. |
Tamanho do Arquivo | 8.29 KB |
Contagem de Instalações | 14,923 |
Versão Atual | 2.0.0 |
Última Atualização | 2023-03-09 |
Data de Publicação | 2020-05-01 |
Classificação | 4.00/5 Total de 16 Avaliações |
Desenvolvedor | mikeyaworski |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://mikeyaworski.com/contact |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Claim Twitch Channel Points", "description": "Will automatically click the button for claiming channel points on Twitch.", "version": "2.0.0", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "main.js", "interval.js", "mutation-observer.js" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |