Blue Tick

"Blue Tick" restores authentic blue ticks and distinguishes between actual verified account and paid subscribers.

Blue Tick là gì?

Blue Tick là một tiện ích mở rộng Chrome được phát triển bởi Aman Gupta, và tính năng chính của nó là ""Blue Tick" restores authentic blue ticks and distinguishes between actual verified account and paid subscribers.".

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

screenshot
screenshot

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

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

                        Hours after launching this new feature, Twitter users are left in chaos and confusion. Thousands of fake verified accounts have impersonated prominent brands and personalities. 

Twitter has provided voice to the voiceless. It helped many of us locate an empty hospital bed or find crucial medicines during the second Covid wave.

It is my tiny attempt to preserve the integrity of the platform.                    

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

Tên Blue Tick Blue Tick
ID olfckcmcobffcnbelnfgbaiinanbmldp
URL Chính Thức https://chromewebstore.google.com/detail/blue-tick/olfckcmcobffcnbelnfgbaiinanbmldp
Mô tả "Blue Tick" restores authentic blue ticks and distinguishes between actual verified account and paid subscribers.
Kích Thước Tệp 10.5 MB
Số Lần Cài Đặt 134
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2022-11-17
Ngày Phát Hành 2022-11-15
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Aman Gupta
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/amangupta25/blue-tick
URL Trang Trợ Giúp https://github.com/amangupta25/blue-tick
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/60d9ca28-2143-473b-b6a4-aeeaa2d0409e
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "homepage_url": "http:\/\/chrome.google.com\/webstore",
    "version": "0.0.2",
    "version_name": "0.0.2",
    "manifest_version": 3,
    "default_locale": "en",
    "minimum_chrome_version": "88",
    "permissions": [
        "scripting",
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "assets\/img\/twitter-verified-badge.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "assets\/img\/twitter-verified-badge.png",
            "24": "assets\/img\/twitter-verified-badge.png",
            "32": "assets\/img\/twitter-verified-badge.png"
        },
        "default_title": "__MSG_appName__"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/*.json",
                "assets\/scripts\/turnOn.js",
                "assets\/scripts\/turnOff.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                ".\/assets\/scripts\/content.js"
            ]
        }
    ]
}