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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}