Verified Tweets Only

Simple extension to only show verified tweets on Twitter

Verified Tweets Only क्या है?

Verified Tweets Only https://verifiedtweetsonly.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple extension to only show verified tweets on Twitter"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Verified Tweets Only एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Verified Tweets Only Verified Tweets Only
ID ecgogipmgmochbfeecomhobmbjfpikdo
आधिकारिक URL https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo
विवरण Simple extension to only show verified tweets on Twitter
फ़ाइल का आकार 90.9 KB
स्थापना संख्या 40
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2021-06-24
प्रकाशन तिथि 2021-06-24
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर https://verifiedtweetsonly.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://verifiedtweetsonly.com
सहायता पृष्ठ URL https://verifiedtweetsonly.com
समर्थित भाषाएँ 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"
    }
}