Focuster for Chrome
Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.
什么是Focuster for Chrome?
Focuster for Chrome是由http://focuster.com开发的Chrome扩展程序,该扩展的主要功能是“Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.”。
扩展截图
下载Focuster for Chrome扩展crx文件
下载Focuster for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Focuster helps professionals and entrepreneurs to better manage their most precious resource - Focus. Learn more and signup at http://focuster.com Focuster Chrome enhances your experience: - Focuster New Tab: Don't let priorities get out of sight. When you open a new tab in Chrome, you will see Focuster. - Quick Capture: Easily capture things you need to do later without losing your flow. Simply press Control-Shift-9 (Windows/Linux) or Command-Shift-9 (Mac) to open Focuster's quick capture window. We love feedback and want to hear yours! E-mail it to [email protected]
扩展基本信息
名称 | |
ID | bafpjfpmoemfbpekbjgcfclkcokknpdj |
官方URL | https://chrome.google.com/webstore/detail/focuster-for-chrome/bafpjfpmoemfbpekbjgcfclkcokknpdj |
简介 | Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more. |
文件大小 | 14.77 KB |
安装次数 | 163 |
当前版本 | 1.0.6 |
更新时间 | 2019-11-04 |
上架时间 | 2019-11-04 |
评分 | 4.83/5 共6次评分 |
开发者 | http://focuster.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.focuster.com |
帮助页面URL | https://help.focuster.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focuster for Chrome", "description": "Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.", "version": "1.0.6", "icons": { "16": "icon-16.png", "96": "icon-96.png", "144": "icon-144.png" }, "commands": { "quick-capture": { "suggested_key": { "default": "Ctrl+Shift+9", "mac": "Command+Shift+9" }, "description": "Capture ideas quickly in Focuster with a Quick Capture window.", "global": true } }, "browser_action": { "default_icon": { "16": "icon-16.png", "96": "icon-96.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.focuster.com\/*" ], "js": [ "content.js" ] } ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "chrome_url_overrides": { "newtab": "newtab.html" }, "permissions": [ "tabs" ] } |