Focuster for Chrome

Focuster for Chrome

Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.

Merlin
Additional files are visible only to premium users

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"
  ]
}