Twitter View Count Remover
A chrome extension to remove the Views count from Twitter
O que é Twitter View Count Remover?
Twitter View Count Remover é uma extensão do Chrome desenvolvida por MyUsernamesThis, e sua principal característica é "A chrome extension to remove the Views count from Twitter".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter View Count Remover
Baixe arquivos de extensão Twitter View Count Remover 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
Tired of seeing the new Views counter on Twitter posts? This extension finds all instances of the Views counter and hides them on any Twitter.com page, restoring the previous interface consisting of only likes, replies, and retweets. What's new: Fixed bug affecting extension with no usernames in whitelist Option to move views to after likes
Informações Básicas da Extensão
Nome | Twitter View Count Remover |
ID | chfanlbndjhbjjbacpcjbogknncaadnc |
URL Oficial | https://chromewebstore.google.com/detail/twitter-view-count-remove/chfanlbndjhbjjbacpcjbogknncaadnc |
Descrição | A chrome extension to remove the Views count from Twitter |
Tamanho do Arquivo | 141 KB |
Contagem de Instalações | 35 |
Versão Atual | 0.2.2 |
Última Atualização | 2023-01-16 |
Data de Publicação | 2022-12-26 |
Classificação | 4.00/5 Total de 5 Avaliações |
Desenvolvedor | MyUsernamesThis |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension to remove the Views count from Twitter", "version": "0.2.2", "manifest_version": 3, "name": "Twitter View Count Remover", "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.twitter.com\/*", "https:\/\/*.twitter.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ], "run_at": "document_end" } ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png", "pageScript.js" ], "matches": [] } ], "permissions": [ "storage" ] } |