Verified Tweets Only

Simple extension to only show verified tweets on Twitter

ما هو Verified Tweets Only؟

Verified Tweets Only هو إضافة Chrome تم تطويرها بواسطة https://verifiedtweetsonly.com، والميزة الرئيسية لها هي "Simple extension to only show verified tweets on Twitter".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Verified Tweets Only

قم بتنزيل ملفات الامتداد Verified Tweets Only بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}