Twitch: Hide Elements

Hide Twitch visual elements like Recommended Channels, Prime Loot, etc.

Twitch: Hide Elements란 무엇입니까?

Twitch: Hide Elements은(는) Baltimora에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide Twitch visual elements like Recommended Channels, Prime Loot, etc."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitch: Hide Elements 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension has about 40 features for removing visual elements from any part of the twitch.tv

Features:
- Hide Left Section (Followed channels, Recommended channels, Viewers also watch, Live Status & Viewers)
- Hide Top Section (Logo, Tabs, Search box, Prime loot, Notifications, Whispers, Get bits, Avatar)
- Hide Mid Section (Extensions overlay, Tags, Buttons, Section about streamer, Description panel)
- Hide Right Section (Chat header, Leaderboard of gifters, Events overlay, Channel points, Chat footer)
- Chat Details (Hide badges, Highlighted chat messages, Change usernames color)
- Other (Video players carousel on main page, Elements on clips page, Channel and category recommendations, and other twitch elements)                    

확장 프로그램 기본 정보

이름 Twitch: Hide Elements Twitch: Hide Elements
ID gllfjplkknpblehhpfdbcllmkhmfkomf
공식 URL https://chromewebstore.google.com/detail/twitch-hide-elements/gllfjplkknpblehhpfdbcllmkhmfkomf
설명 Hide Twitch visual elements like Recommended Channels, Prime Loot, etc.
파일 크기 268 KB
설치 횟수 957
현재 버전 1.4.1
최근 업데이트 2022-12-17
출시 날짜 2022-02-18
평점 5.00/5 총 12 개의 평점
개발자 Baltimora
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://docs.google.com/forms/d/e/1FAIpQLSeacKe3T4ROaYxh91lA0QslXbO-bP0032uV1pMwxiS2tbdpTw/viewform
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch: Hide Elements",
    "icons": {
        "16": "imgs\/icon-16.png",
        "32": "imgs\/icon-32.png",
        "48": "imgs\/icon-48.png",
        "128": "imgs\/icon-128.png"
    },
    "action": {
        "default_icon": "imgs\/icon-128.png",
        "default_popup": "index.html",
        "default_title": "Twitch: Hide Elements"
    },
    "author": "Baltimora",
    "background": {
        "service_worker": "back.js"
    },
    "content_scripts": [
        {
            "css": [
                "elements.css"
            ],
            "js": [
                "elements.js"
            ],
            "all_frames": true,
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "carousel_pause.js"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "extension_ids": []
        }
    ],
    "version": "1.4.1",
    "description": "Hide Twitch visual elements like Recommended Channels, Prime Loot, etc.",
    "offline_enabled": true
}