Lock it
Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.
What is Lock it?
Lock it is a Chrome extension developed by Tigran Sargsyan, and its main feature is "Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.".
Extension Screenshots
Download Lock it Extension CRX File
Download Lock it extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | magjmoeipkknhmpcojpeomlfgaofhfho |
Official URL | https://chrome.google.com/webstore/detail/lock-it/magjmoeipkknhmpcojpeomlfgaofhfho |
Description | Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close. |
File Size | 118 KB |
Installation Count | 9,000 |
Current Version | 0.3 |
Last Updated | 2014-10-08 |
Publish Date | 2014-10-08 |
Rating | 3.30/5 Total 103 Ratings |
Developer | Tigran Sargsyan |
Payment Type | free |
Supported Languages | 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" } |