Website Locker
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Hvad er Website Locker?
Website Locker er en Chrome-udvidelse udviklet af calebgeizer, og dens hovedfunktion er "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".
Udvidelsesskærmbilleder
Download Website Locker-udvidelses-CRX-fil
Download Website Locker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Website Locker |
ID | kbomichpahnfklembajcficjediaphpm |
Officiel URL | https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm |
Beskrivelse | Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. |
Filstørrelse | 8.1 KB |
Antal Installationer | 1,119 |
Nuværende Version | 0.1.0 |
Senest Opdateret | 2022-04-07 |
Udgivelsesdato | 2019-05-03 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | calebgeizer |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://calebgeizer.com/ |
Understøttede Sprog | 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" ] } |