Hide Tab

Hide your browser tabs.

Hide Tab란 무엇입니까?

Hide Tab은(는) buzznewsx.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide your browser tabs."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Restarting the browser after installation takes effect.

One click hides the browser tabs you're visiting, which is useful when you don't want people to see your tabs.
Click the icon button or Alt + q (Mac: option + q) to implement tagging and hiding.                    

확장 프로그램 기본 정보

이름 Hide Tab Hide Tab
ID fgkbkepokoodbbcbcboiopdkfelpjhgi
공식 URL https://chromewebstore.google.com/detail/hide-tab/fgkbkepokoodbbcbcboiopdkfelpjhgi
설명 Hide your browser tabs.
파일 크기 15.93 KB
설치 횟수 742
현재 버전 0.0.3
최근 업데이트 2020-06-11
출시 날짜 2020-06-11
평점 4.60/5 총 5 개의 평점
개발자 buzznewsx.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.buzznewsx.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.0.3",
    "description": "__MSG_description__",
    "default_locale": "en",
    "author": "[email protected]",
    "browser_action": {
        "default_icon": "images\/icons\/icon48.png",
        "default_title": "HideTab"
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Toggle Hide\/Show"
        }
    },
    "icons": {
        "16": "images\/icons\/icon16.png",
        "32": "images\/icons\/icon32.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "images\/favicon.ico",
        "images\/default.ico"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": []
}