BlueLiteBlocker

Filter tweets from Twitter Blue users without having to block or mute them.

BlueLiteBlocker là gì?

BlueLiteBlocker là một tiện ích mở rộng Chrome được phát triển bởi MalwareTech, và tính năng chính của nó là "Filter tweets from Twitter Blue users without having to block or mute them.".

Ả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 BlueLiteBlocker

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

                        Hide tweets from Twitter Blue users you don't follow without needing to mute or block them.

Customizable to allow tweets from accounts with more than a set number of followers.

Follow @BlueLiteBlocker on Twitter for Updates/Support.                    

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

Tên BlueLiteBlocker BlueLiteBlocker
ID gimbefnamedicgajjballjjhanhnpjce
URL Chính Thức https://chromewebstore.google.com/detail/blueliteblocker/gimbefnamedicgajjballjjhanhnpjce
Mô tả Filter tweets from Twitter Blue users without having to block or mute them.
Kích Thước Tệp 39.73 KB
Số Lần Cài Đặt 3,766
Phiên Bản Hiện Tại 0.0.0.9
Cập Nhật Lần Cuối 2023-05-23
Ngày Phát Hành 2023-04-26
Đánh Giá 4.92/5 Tổng số 36 Đánh Giá
Nhà Phát Triển MalwareTech
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/BlueLiteBlocker/BlueLiteBlocker
URL Trang Trợ Giúp https://github.com/BlueLiteBlocker/BlueLiteBlocker/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BlueLiteBlocker",
    "version": "0.0.0.9",
    "description": "Filter tweets from Twitter Blue users without having to block or mute them.",
    "icons": {
        "48": "icons\/logo-48.png",
        "128": "icons\/logo-128.png"
    },
    "options_ui": {
        "page": "settings.html",
        "browser_style": true
    },
    "action": {
        "default_area": "navbar",
        "default_icon": {
            "128": "icons\/logo-128.png"
        },
        "default_popup": "settings.html"
    },
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "xhr_hook.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "extension.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "injector.js"
            ]
        }
    ]
}