Attention
Watch your browsing habits and get reminded when wasting time.
什么是Attention?
Attention是由Alsonax开发的Chrome扩展程序,该扩展的主要功能是“Watch your browsing habits and get reminded when wasting time.”。
扩展截图
下载Attention扩展crx文件
下载Attention扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Attention keeps track of the websites you visit and stops you from wasting lots of time on distracting websites. It doesn't block websites straight away, but shows a reminder which is impossible to ignore.
- no setup required, just rate the websites you frequently visit
- your browsing history is private, all data stays in the browser 扩展基本信息
| 名称 | |
| ID | nmejnlclcnjakdbpfehhcobbmlcpbiba |
| 官方URL | https://chromewebstore.google.com/detail/attention/nmejnlclcnjakdbpfehhcobbmlcpbiba |
| 简介 | Watch your browsing habits and get reminded when wasting time. |
| 文件大小 | 745 KB |
| 安装次数 | 289 |
| 当前版本 | 0.2.12 |
| 更新时间 | 2015-01-11 |
| 上架时间 | 2015-01-11 |
| 评分 | 4.00/5 共5次评分 |
| 开发者 | Alsonax |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Attention",
"version": "0.2.12",
"manifest_version": 2,
"description": "Watch your browsing habits and get reminded when wasting time.",
"offline_enabled": true,
"icons": {
"16": "icons\/green-16.png",
"48": "icons\/app-48.png",
"128": "icons\/app-128.png"
},
"background": {
"scripts": [
"vendor\/moment\/moment.js",
"src\/persistence\/options.js",
"src\/persistence\/store.js",
"src\/background\/background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "icons\/gray-16.png"
},
"default_title": "Attention"
},
"options_page": "src\/options\/index.html",
"permissions": [
"chrome:\/\/favicon\/",
"storage",
"tabs",
"http:\/\/*\/",
"https:\/\/*\/"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"src\/inject\/inject.css"
],
"run_at": "document_start"
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"vendor\/zepto\/zepto.min.js",
"src\/inject\/inject.js"
]
}
],
"web_accessible_resources": [
"src\/popup\/*",
"test\/*",
"icons\/*",
"vendor\/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'"
} | |