BlueLiteBlocker

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

BlueLiteBlocker란 무엇입니까?

BlueLiteBlocker은(는) MalwareTech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter tweets from Twitter Blue users without having to block or mute them."입니다.

확장 프로그램 스크린샷

screenshot

BlueLiteBlocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}