Twitter View Count Remover
A chrome extension to remove the Views count from Twitter
¿Qué es Twitter View Count Remover?
Twitter View Count Remover es una extensión de Chrome desarrollada por MyUsernamesThis, y su función principal es "A chrome extension to remove the Views count from Twitter".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter View Count Remover
Descarga archivos de extensión Twitter View Count Remover en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Twitter View Count Remover |
ID | chfanlbndjhbjjbacpcjbogknncaadnc |
URL Oficial | https://chromewebstore.google.com/detail/twitter-view-count-remove/chfanlbndjhbjjbacpcjbogknncaadnc |
Descripción | A chrome extension to remove the Views count from Twitter |
Tamaño del Archivo | 141 KB |
Cantidad de Instalaciones | 35 |
Versión Actual | 0.2.2 |
Última Actualización | 2023-01-16 |
Fecha de Publicación | 2022-12-26 |
Calificación | 4.00/5 Total de 5 Calificaciones |
Desarrollador | MyUsernamesThis |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |