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.”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | magjmoeipkknhmpcojpeomlfgaofhfho |
官方網址 | 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" } |