Verified Tweets Only

Simple extension to only show verified tweets on Twitter

Qu'est-ce que Verified Tweets Only ?

Verified Tweets Only est une extension Chrome développée par https://verifiedtweetsonly.com, et sa fonction principale est "Simple extension to only show verified tweets on Twitter".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Verified Tweets Only

Téléchargez les fichiers d'extension Verified Tweets Only au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Verified Tweets Only Verified Tweets Only
ID ecgogipmgmochbfeecomhobmbjfpikdo
URL Officiel https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo
Description Simple extension to only show verified tweets on Twitter
Taille du Fichier 90.9 KB
Nombre d'Installations 40
Version Actuelle 0.0.1
Dernière Mise à Jour 2021-06-24
Date de Publication 2021-06-24
Évaluation 3.00/5 Total 2 Évaluations
Développeur https://verifiedtweetsonly.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://verifiedtweetsonly.com
URL de la Page d'Aide https://verifiedtweetsonly.com
Langues Prises en Charge 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"
    }
}