Focus: A Simple Site Blocker
A Chrome Extension to help you focus.
什么是Focus: A Simple Site Blocker?
Focus: A Simple Site Blocker是由rypan开发的Chrome扩展程序,该扩展的主要功能是“A Chrome Extension to help you focus.”。
扩展截图
下载Focus: A Simple Site Blocker扩展crx文件
下载Focus: A Simple Site Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Focus is a simple Chrome Extension that helps you focus by blocking a list of sites that you choose. 扩展基本信息
| 名称 | |
| ID | akghpofhgkghbnodfjfenhimdhajhpdh |
| 官方URL | https://chromewebstore.google.com/detail/focus-a-simple-site-block/akghpofhgkghbnodfjfenhimdhajhpdh |
| 简介 | A Chrome Extension to help you focus. |
| 文件大小 | 35.24 KB |
| 安装次数 | 382 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2016-09-09 |
| 上架时间 | 2016-09-08 |
| 评分 | 3.40/5 共10次评分 |
| 开发者 | rypan |
| 付费类型 | free |
| 扩展官网 | https://github.com/rypan/focus |
| 帮助页面URL | https://github.com/rypan/focus/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Focus: A Simple Site Blocker",
"short_name": "Focus",
"description": "A Chrome Extension to help you focus.",
"version": "1.0.1",
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*:\/\/*\/*"
],
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Focus",
"default_popup": "popup.html",
"default_icon": "48.png"
},
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
} | |