Otto – Pomodoro timer (test)

Otto – Pomodoro timer (test)

Be mindful while working - A Pomodoro timer and website blocker to help you stay focused

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Be mindful while working - A Pomodoro timer and website blocker to help you stay focused",
  "version": "4.3.6",
  "manifest_version": 3,
  "name": "Otto – Pomodoro timer (test)",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon24.png"
  },
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "alarms",
    "storage",
    "declarativeNetRequest",
    "tabs",
    "tts",
    "notifications"
  ],
  "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>"
      ]
    }
  ]
}