Otto - A productivity tool for focus

Otto - A productivity tool for focus

Pomodoro timer, website blocker, tasks and workflows to help you become more productive

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Pomodoro timer, website blocker, tasks and workflows to help you become more productive",
  "version": "1.0.21",
  "manifest_version": 3,
  "name": "Otto - A productivity tool for focus",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon24.png"
  },
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "alarms",
    "storage",
    "declarativeNetRequest",
    "tabs",
    "notifications",
    "offscreen"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "toast.html",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}