Verified Tweets Only

Simple extension to only show verified tweets on Twitter

Cos'è Verified Tweets Only?

Verified Tweets Only è un'estensione di Chrome sviluppata da https://verifiedtweetsonly.com, e la sua funzione principale è "Simple extension to only show verified tweets on Twitter".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Verified Tweets Only

Scarica i file di estensione Verified Tweets Only 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 extension to only show verified tweets on Twitter.

All you got to do is check/uncheck to filter tweets from verified tweeple only!

Works in:
- home feed
- search results
- tweet replies
... and anywhere else tweets show up!

The code is open source ( https://github.com/RajatVaghani/verified-tweets-only ) and extremely light weight and easy to use - and most importantly, it gets the job done!                    

Informazioni di Base sull'Estensione

Nome Verified Tweets Only Verified Tweets Only
ID ecgogipmgmochbfeecomhobmbjfpikdo
URL Ufficiale https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo
Descrizione Simple extension to only show verified tweets on Twitter
Dimensione del File 90.9 KB
Conteggio Installazioni 40
Versione Corrente 0.0.1
Ultimo Aggiornamento 2021-06-24
Data di Pubblicazione 2021-06-24
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore https://verifiedtweetsonly.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://verifiedtweetsonly.com
URL della Pagina di Aiuto https://verifiedtweetsonly.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Verified Tweets Only",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Simple extension to only show verified tweets on Twitter",
    "icons": {
        "16": "icons\/icon_on.png",
        "48": "icons\/icon_on.png",
        "128": "icons\/icon_on.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "storage.js",
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icons\/icon_on.png",
            "38": "icons\/icon_on.png"
        },
        "default_popup": "popup.html",
        "default_title": "Verified Tweets Only"
    }
}