Website Locker
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
Website Locker là gì?
Website Locker là một tiện ích mở rộng Chrome được phát triển bởi calebgeizer, và tính năng chính của nó là "Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Website Locker
Tải xuống các tệp mở rộng Website Locker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Website Locker |
ID | kbomichpahnfklembajcficjediaphpm |
URL Chính Thức | https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm |
Mô tả | Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. |
Kích Thước Tệp | 8.1 KB |
Số Lần Cài Đặt | 1,119 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2022-04-07 |
Ngày Phát Hành | 2019-05-03 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | calebgeizer |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://calebgeizer.com/ |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |