Twitter View Count Remover
A chrome extension to remove the Views count from Twitter
Cos'è Twitter View Count Remover?
Twitter View Count Remover è un'estensione di Chrome sviluppata da MyUsernamesThis, e la sua funzione principale è "A chrome extension to remove the Views count from Twitter".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter View Count Remover
Scarica i file di estensione Twitter View Count Remover 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
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
Informazioni di Base sull'Estensione
Nome | Twitter View Count Remover |
ID | chfanlbndjhbjjbacpcjbogknncaadnc |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-view-count-remove/chfanlbndjhbjjbacpcjbogknncaadnc |
Descrizione | A chrome extension to remove the Views count from Twitter |
Dimensione del File | 141 KB |
Conteggio Installazioni | 35 |
Versione Corrente | 0.2.2 |
Ultimo Aggiornamento | 2023-01-16 |
Data di Pubblicazione | 2022-12-26 |
Valutazione | 4.00/5 Totale 5 Valutazioni |
Sviluppatore | MyUsernamesThis |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |