Website Locker
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
¿Qué es Website Locker?
Website Locker es una extensión de Chrome desarrollada por calebgeizer, y su función principal es "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Website Locker
Descarga archivos de extensión Website Locker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. Pick between a whitelist or blacklist, a blacklist locks the websites listed while a whitelist locks every website but the ones listed. Then type in the websites you want locked/unlocked and put in the amount of unlocked time.
Información Básica de la Extensión
Nombre | Website Locker |
ID | kbomichpahnfklembajcficjediaphpm |
URL Oficial | https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm |
Descripción | Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. |
Tamaño del Archivo | 8.1 KB |
Cantidad de Instalaciones | 1,119 |
Versión Actual | 0.1.0 |
Última Actualización | 2022-04-07 |
Fecha de Publicación | 2019-05-03 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | calebgeizer |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://calebgeizer.com/ |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Website Locker", "version": "0.1.0", "manifest_version": 2, "description": "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.", "homepage_url": "https:\/\/github.com\/calebgeizer", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Unlock\/Lock", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "storage" ] } |