Focus Meter
Tracks focus and break times and blocks distracting sites when you're meant to focus.
什么是Focus Meter?
Focus Meter是由felixpitau开发的Chrome扩展程序,该扩展的主要功能是“Tracks focus and break times and blocks distracting sites when you're meant to focus.”。
扩展截图
下载Focus Meter扩展crx文件
下载Focus Meter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This app helps to assist people who have difficulty focusing because they're getting distracted online. Set a blacklist of distracting sites, set starting and ending work times for the blocking to take effect and specify how much focus time earns you a break now and then.
扩展基本信息
名称 | Focus Meter |
ID | hepedehopmkmfdnlgogmmfkkmjflkkia |
官方URL | https://chromewebstore.google.com/detail/focus-meter/hepedehopmkmfdnlgogmmfkkmjflkkia |
简介 | Tracks focus and break times and blocks distracting sites when you're meant to focus. |
文件大小 | 81.51 KB |
安装次数 | 73 |
当前版本 | 1.1 |
更新时间 | 2018-01-12 |
上架时间 | 2018-01-11 |
开发者 | felixpitau |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focus Meter", "short_name": "Focus Meter", "description": "Tracks focus and break times and blocks distracting sites when you're meant to focus.", "version": "1.1", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "block.css" ], "js": [ "block.js" ] } ], "permissions": [ "activeTab", "storage", "alarms", "notifications" ], "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } } |