BlueLiteBlocker

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

BlueLiteBlockerคืออะไร?

BlueLiteBlocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MalwareTech และคุณลักษณะหลักของมันคือ "Filter tweets from Twitter Blue users without having to block or mute them."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BlueLiteBlocker

ดาวน์โหลดไฟล์ส่วนขยาย BlueLiteBlocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ BlueLiteBlocker BlueLiteBlocker
ID gimbefnamedicgajjballjjhanhnpjce
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/blueliteblocker/gimbefnamedicgajjballjjhanhnpjce
คำอธิบาย Filter tweets from Twitter Blue users without having to block or mute them.
ขนาดไฟล์ 39.73 KB
จำนวนการติดตั้ง 3,766
เวอร์ชันปัจจุบัน 0.0.0.9
อัปเดตครั้งล่าสุด 2023-05-23
วันที่เผยแพร่ 2023-04-26
คะแนน 4.92/5 รวมทั้งหมด 36 คะแนน
ผู้พัฒนา MalwareTech
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/BlueLiteBlocker/BlueLiteBlocker
URL หน้าช่วยเหลือ https://github.com/BlueLiteBlocker/BlueLiteBlocker/issues
ภาษาที่รองรับ 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"
            ]
        }
    ]
}