Verified Tweets Only

Simple extension to only show verified tweets on Twitter

Verified Tweets Only là gì?

Verified Tweets Only là một tiện ích mở rộng Chrome được phát triển bởi https://verifiedtweetsonly.com, và tính năng chính của nó là "Simple extension to only show verified tweets on Twitter".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Verified Tweets Only

Tải xuống các tệp mở rộng Verified Tweets Only dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Verified Tweets Only Verified Tweets Only
ID ecgogipmgmochbfeecomhobmbjfpikdo
URL Chính Thức https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo
Mô tả Simple extension to only show verified tweets on Twitter
Kích Thước Tệp 90.9 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2021-06-24
Ngày Phát Hành 2021-06-24
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://verifiedtweetsonly.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://verifiedtweetsonly.com
URL Trang Trợ Giúp https://verifiedtweetsonly.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}