Remove Twitter Views

Remove the Views button from Twitter

¿Qué es Remove Twitter Views?

Remove Twitter Views es una extensión de Chrome desarrollada por Kabaj, y su función principal es "Remove the Views button from Twitter".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Remove Twitter Views

Descarga archivos de extensión Remove Twitter Views 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

                        Removes the new "Views" button from Twitter


It is my first time doing a Chrome extension, so it might not be optimized at all and might stop working soon, I take all suggestions.
Here is the GitHub link to the extension : https://github.com/KabajSAH/Twitter-Remove-Views                    

Información Básica de la Extensión

Nombre Remove Twitter Views Remove Twitter Views
ID flcjnidfibjigabnihmblehlkkeiganp
URL Oficial https://chromewebstore.google.com/detail/remove-twitter-views/flcjnidfibjigabnihmblehlkkeiganp
Descripción Remove the Views button from Twitter
Tamaño del Archivo 8.51 KB
Cantidad de Instalaciones 92
Versión Actual 1.2.2
Última Actualización 2023-01-17
Fecha de Publicación 2022-12-26
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Kabaj
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove Twitter Views",
    "description": "Remove the Views button from Twitter",
    "version": "1.2.2",
    "author": "Kabaj",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                ".\/scripts\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    }
}