Verified Tweets Only

Simple extension to only show verified tweets on Twitter

¿Qué es Verified Tweets Only?

Verified Tweets Only es una extensión de Chrome desarrollada por https://verifiedtweetsonly.com, y su función principal es "Simple extension to only show verified tweets on Twitter".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Verified Tweets Only

Descarga archivos de extensión Verified Tweets Only 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

                        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!                    

Información Básica de la Extensión

Nombre Verified Tweets Only Verified Tweets Only
ID ecgogipmgmochbfeecomhobmbjfpikdo
URL Oficial https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo
Descripción Simple extension to only show verified tweets on Twitter
Tamaño del Archivo 90.9 KB
Cantidad de Instalaciones 40
Versión Actual 0.0.1
Última Actualización 2021-06-24
Fecha de Publicación 2021-06-24
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador https://verifiedtweetsonly.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://verifiedtweetsonly.com
URL de la Página de Ayuda https://verifiedtweetsonly.com
Idiomas Soportados 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"
    }
}