Lock it
Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.
Was ist Lock it?
Lock it ist eine Chrome-Erweiterung, die von Tigran Sargsyan entwickelt wurde, und ihr Hauptmerkmal ist "Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close.".
Erweiterungsscreenshots
Lock it-Erweiterungs-CRX-Datei herunterladen
Laden Sie Lock it-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | magjmoeipkknhmpcojpeomlfgaofhfho |
Offizielle URL | https://chrome.google.com/webstore/detail/lock-it/magjmoeipkknhmpcojpeomlfgaofhfho |
Beschreibung | Extension allows you to lock tabs based on address. If you lock a website you'll be asked for prompt on close. |
Dateigröße | 118 KB |
Installationsanzahl | 9,000 |
Aktuelle Version | 0.3 |
Letztes Update | 2014-10-08 |
Veröffentlichungsdatum | 2014-10-08 |
Bewertung | 3.30/5 Insgesamt 103 Bewertungen |
Entwickler | Tigran Sargsyan |
Zahlungsart | free |
Unterstützte Sprachen | 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" } |