focus

focus

Take back your time on the internet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "focus",
  "description": "Take back your time on the internet",
  "version": "1.0.27",
  "icons": {
    "16": "img/focus16.png",
    "48": "img/focus48.png",
    "128": "img/focus128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/focus16.png",
      "48": "img/focus48.png",
      "128": "img/focus128.png"
    },
    "default_popup": "html/popup.html",
    "default_title": "focus."
  },
  "options_page": "html/settings.html",
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/eventPage.js"
    ]
  },
  "commands": {
    "toggle-focus-mode": {
      "suggested_key": {
        "windows": "Ctrl+Shift+F",
        "mac": "Command+Shift+F",
        "chromeos": "Ctrl+Shift+F",
        "linux": "Ctrl+Shift+F"
      },
      "description": "Toggle focus mode"
    }
  }
}