Hide Blue Checks

Hide tweets from accounts with blue checkmarks.

Hide Blue Checks là gì?

Hide Blue Checks là một tiện ích mở rộng Chrome được phát triển bởi Ian Webster, và tính năng chính của nó là "Hide tweets from accounts with blue checkmarks.".

Ả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 Hide Blue Checks

Tải xuống các tệp mở rộng Hide Blue Checks 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

                        This extension hides tweets from accounts with Blue "Verified" Checkmarks.                    

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

Tên Hide Blue Checks Hide Blue Checks
ID ahghnnmomjbgbfmmeiafbilhjlloaooc
URL Chính Thức https://chromewebstore.google.com/detail/hide-blue-checks/ahghnnmomjbgbfmmeiafbilhjlloaooc
Mô tả Hide tweets from accounts with blue checkmarks.
Kích Thước Tệp 17.17 KB
Số Lần Cài Đặt 121
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2022-11-10
Ngày Phát Hành 2022-11-07
Đánh Giá 4.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Ian Webster
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/typpo/hide-blue-checks
URL Trang Trợ Giúp https://github.com/typpo/hide-blue-checks/issues/new
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Blue Checks",
    "version": "0.0.1",
    "description": "Hide tweets from accounts with blue checkmarks.",
    "homepage_url": "https:\/\/github.com\/typpo\/hide-blue-checks",
    "manifest_version": 3,
    "minimum_chrome_version": "100",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "100.0"
        }
    },
    "icons": {
        "128": "icon.3998fbaf.png"
    },
    "permissions": [],
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.b1d20040.js"
            ],
            "run_at": "document_end",
            "css": []
        }
    ]
}