Website Locker
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
O que é Website Locker?
Website Locker é uma extensão do Chrome desenvolvida por calebgeizer, e sua principal característica é "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Website Locker
Baixe arquivos de extensão Website Locker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Website Locker |
ID | kbomichpahnfklembajcficjediaphpm |
URL Oficial | https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm |
Descrição | Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. |
Tamanho do Arquivo | 8.1 KB |
Contagem de Instalações | 1,119 |
Versão Atual | 0.1.0 |
Última Atualização | 2022-04-07 |
Data de Publicação | 2019-05-03 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | calebgeizer |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://calebgeizer.com/ |
Idiomas Suportados | 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" ] } |