Website Locker
Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.
什么是Website Locker?
Website Locker是由calebgeizer开发的Chrome扩展程序,该扩展的主要功能是“Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time.”。
扩展截图
下载Website Locker扩展crx文件
下载Website Locker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | kbomichpahnfklembajcficjediaphpm |
| 官方URL | https://chromewebstore.google.com/detail/website-locker/kbomichpahnfklembajcficjediaphpm |
| 简介 | Put time-wasting websites in a vault and press the extension icon to unlock it for a period of time. |
| 文件大小 | 8.1 KB |
| 安装次数 | 1,119 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2022-04-07 |
| 上架时间 | 2019-05-03 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | calebgeizer |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://calebgeizer.com/ |
| 支持的语言 | 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"
]
} | |