Verified Tweets Only

Simple extension to only show verified tweets on Twitter

Co to jest Verified Tweets Only?

Verified Tweets Only to rozszerzenie Chrome opracowane przez https://verifiedtweetsonly.com, a jego główną funkcją jest „Simple extension to only show verified tweets on Twitter”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Verified Tweets Only

Pobierz pliki rozszerzeń Verified Tweets Only w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Verified Tweets Only Verified Tweets Only
ID ecgogipmgmochbfeecomhobmbjfpikdo
Oficjalny URL https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo
Opis Simple extension to only show verified tweets on Twitter
Rozmiar pliku 90.9 KB
Liczba instalacji 40
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2021-06-24
Data Publikacji 2021-06-24
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper https://verifiedtweetsonly.com
E-mail rajat.vaghani@gmail.com
Typ Płatności free
Strona Rozszerzenia https://verifiedtweetsonly.com
Adres URL Strony Pomocy https://verifiedtweetsonly.com
Obsługiwane Języki 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"
    }
}