Sleeper Chat Hider

Hides the sleeper chat feed

Sleeper Chat Hider란 무엇입니까?

Sleeper Chat Hider은(는) sleeperHider에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides the sleeper chat feed"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Sleeper Chat Hider 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        While I appreciate the idea Sleeper has about being always connected with your league and league-mates, sometimes I want a full screen display for only my team. This extension will hide and unhide the chat feed, but you wont miss too much since every reload of the page starts with the feed showing.                    

확장 프로그램 기본 정보

이름 Sleeper Chat Hider Sleeper Chat Hider
ID hhlggfopbcchakonofkaceakbooplgnb
공식 URL https://chromewebstore.google.com/detail/sleeper-chat-hider/hhlggfopbcchakonofkaceakbooplgnb
설명 Hides the sleeper chat feed
파일 크기 119 KB
설치 횟수 176
현재 버전 1.2
최근 업데이트 2023-07-24
출시 날짜 2019-07-14
개발자 sleeperHider
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sleeper Chat Hider",
    "version": "1.2",
    "description": "Hides the sleeper chat feed",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icons8-no-chat-48.png",
            "32": "images\/icons8-no-chat-48.png",
            "48": "images\/icons8-no-chat-48.png",
            "128": "images\/icons8-no-chat-48.png"
        }
    },
    "icons": {
        "16": "images\/icons8-no-chat-48.png",
        "32": "images\/icons8-no-chat-48.png",
        "48": "images\/icons8-no-chat-48.png",
        "128": "images\/icons8-no-chat-48.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/sleeper.app\/*"
            ],
            "js": [
                "setToggleOnLoad.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 3
}