Lock it

Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.

什么是Lock it?

Lock it是由Tigran Sargsyan开发的Chrome扩展程序,该扩展的主要功能是“Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.”。

扩展截图

screenshot

下载Lock it扩展crx文件

下载Lock it扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Update: Added deadlock feature, allows you to have your tabs reopened even if you close them after warning. Selecting this option is not recommended. Deadlock can be found in Lock it extension options.                    

扩展基本信息

名称 Lock it Lock it
ID magjmoeipkknhmpcojpeomlfgaofhfho
官方URL https://chrome.google.com/webstore/detail/lock-it/magjmoeipkknhmpcojpeomlfgaofhfho
简介 Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.
文件大小 118 KB
安装次数 9,000
当前版本 0.3
更新时间 2014-10-08
上架时间 2014-10-08
评分 3.30/5 共103次评分
开发者 Tigran Sargsyan
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.",
    "icons": {
        "256": "icon_256.png",
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "manifest_version": 2,
    "name": "Lock it",
    "page_action": {
        "default_icon": "unlocked_19.png",
        "default_title": "Unlocked"
    },
    "permissions": [
        "storage",
        "tabs",
        "management",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_page": "options.html",
    "version": "0.3"
}