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.”。

擴展截圖

screenshot

下載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]                    

擴展基本資訊

名稱 Focuster for Chrome Focuster for Chrome
ID bafpjfpmoemfbpekbjgcfclkcokknpdj
官方網址 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"
    ]
}