Journey - Work Manager

Journey - Work Manager

Run your pomodoro, block pesky webs, and set your tab groups!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Journey - Work Manager",
  "description": "Run your pomodoro, block pesky webs, and set your tab groups!",
  "version": "0.1.1",
  "manifest_version": 3,
  "author": "Mario Gunawan",
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "An extension to help you work better",
    "default_icon": "favicon.png"
  },
  "icons": {
    "16": "favicon-16x16.png",
    "32": "favicon-32x32.png",
    "48": "favicon-48x48.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "permissions": [
    "offscreen",
    "activeTab",
    "scripting",
    "storage",
    "tabGroups",
    "tts",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/web_blocker.js"
      ]
    }
  ],
  "minimum_chrome_version": "109",
  "options_page": "html/index.html"
}