Twitter Rate Limit Checker
A simple extension to read your tweet reading limit
O que é Twitter Rate Limit Checker?
Twitter Rate Limit Checker é uma extensão do Chrome desenvolvida por kalraevyn, e sua principal característica é "A simple extension to read your tweet reading limit".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter Rate Limit Checker
Baixe arquivos de extensão Twitter Rate Limit Checker 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
Shows you how many tweets you have remaining and when your count will refresh.
Informações Básicas da Extensão
Nome | Twitter Rate Limit Checker |
ID | dejlgdoficmagonlokogpogdgoedidfi |
URL Oficial | https://chromewebstore.google.com/detail/twitter-rate-limit-checke/dejlgdoficmagonlokogpogdgoedidfi |
Descrição | A simple extension to read your tweet reading limit |
Tamanho do Arquivo | 9.79 KB |
Contagem de Instalações | 42 |
Versão Atual | 0.2.0 |
Última Atualização | 2023-07-13 |
Data de Publicação | 2023-07-05 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | kalraevyn |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitter Rate Limit Checker", "description": "A simple extension to read your tweet reading limit", "version": "0.2.0", "permissions": [ "webRequest" ], "host_permissions": [ "https:\/\/twitter.com\/*" ], "icons": { "128": "img\/twitter 128.png", "48": "img\/twitter 48.png" }, "content_scripts": [ { "js": [ "\/scripts\/content.js" ], "matches": [ "*:\/\/twitter.com\/home", "*:\/\/twitter.com\/notifications" ], "run_at": "document_end" } ], "background": { "service_worker": "\/scripts\/background.js" } } |