Lock Tab

Prevents a tab from being closed accidentally

Lock Tab란 무엇입니까?

Lock Tab은(는) gabomaldi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevents a tab from being closed accidentally"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Adds a padlock icon that allows toggling each tab's lock/unlocked state. When a locked tab is being closed, a confirmation dialog which allows preventing the tab from closing, is displayed.

📣 IMPORTANT: after locking, some interaction with the page is required for it to work. So you need to, for example, click anywhere on the page after locking to actually prevent the tab from being closed. This is how Chrome works.                    

확장 프로그램 기본 정보

이름 Lock Tab Lock Tab
ID nhbdiieigbgalknjplfpgmjnpbnkchnb
공식 URL https://chromewebstore.google.com/detail/lock-tab/nhbdiieigbgalknjplfpgmjnpbnkchnb
설명 Prevents a tab from being closed accidentally
파일 크기 43.5 KB
설치 횟수 6,094
현재 버전 1.2.1
최근 업데이트 2024-01-15
출시 날짜 2022-06-24
평점 3.50/5 총 30 개의 평점
개발자 gabomaldi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gabrielmaldi/chrome-lock-tab
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lock Tab",
    "description": "Prevents a tab from being closed accidentally",
    "version": "1.2.1",
    "author": "gabrielmaldi",
    "homepage_url": "https:\/\/github.com\/gabrielmaldi\/chrome-lock-tab",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "images\/unlocked-light.png"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": [],
    "options_page": "src\/options.html"
}