twitter-view-count-remover

Ultra simple browser extension that removes view count from tweets.

Cos'è twitter-view-count-remover?

twitter-view-count-remover è un'estensione di Chrome sviluppata da Fernando de la Rosa, e la sua funzione principale è "Ultra simple browser extension that removes view count from tweets.".

Screenshot dell'Estensione

screenshot
screenshot

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

                        Simple browser extension that removes view count from tweets.

Easily remove view counts from tweets, no more comparing yourself to the Twitter elite, no more feeling like your tweets are falling into the abyss of the internet.

Try it now!

Source code is available at:
https://github.com/jfdelarosa/twitter-view-count-remover

CHANGELOG
v1.3 - Fixed a bug that does not allow to open the more options menu in own tweets
v1.2 - Added the possibility to show or hide the counter via a toggle
v1.1 - Added support for mobile.twitter.com domain
v1.0 - Initial release                    

Informazioni di Base sull'Estensione

Nome twitter-view-count-remover twitter-view-count-remover
ID kacedphpmelngnhgodfbnemedkbbiajj
URL Ufficiale https://chromewebstore.google.com/detail/twitter-view-count-remove/kacedphpmelngnhgodfbnemedkbbiajj
Descrizione Ultra simple browser extension that removes view count from tweets.
Dimensione del File 11.94 KB
Conteggio Installazioni 1,485
Versione Corrente 1.3.0
Ultimo Aggiornamento 2023-01-05
Data di Pubblicazione 2022-12-24
Valutazione 4.70/5 Totale 23 Valutazioni
Sviluppatore Fernando de la Rosa
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://twitter.com/jfdelarosa
URL della Pagina di Aiuto https://twitter.com/jfdelarosa
URL della Pagina della Politica sulla Privacy https://www.lunanotes.io/privacy-policy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "jfdelarosa",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Ultra simple browser extension that removes view count from tweets.",
    "manifest_version": 3,
    "name": "twitter-view-count-remover",
    "permissions": [
        "storage",
        "tabs"
    ],
    "version": "1.3.0",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png"
        },
        "default_popup": "popup.html"
    }
}