Flow State Training

Flow State Training

Simple extension to help you achieve flow state of optimal focus & performance, using Pomodoro technique.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Flow State Training",
  "version": "0.0.2.0",
  "description": "Simple extension to help you achieve flow state of optimal focus & performance, using Pomodoro technique.",
  "icons": {
    "32": "images/icon32.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png",
    "256": "images/icon256.png",
    "512": "images/icon512.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*/*"
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/icon512.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "storage",
    "background"
  ]
}