Rabbit: Productivity-Procrastination Tracker

Rabbit: Productivity-Procrastination Tracker

An interactive companion to keep you focused and productive.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Rabbit: Productivity-Procrastination Tracker",
  "description": "An interactive companion to keep you focused and productive.",
  "version": "2.0.4",
  "icons": {
    "128": "assets/icon.png"
  },
  "action": {
    "default_icon": "assets/icon.png",
    "default_popup": "popup/popup.html",
    "persistent": true
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ],
  "background": {
    "service_worker": "background/script.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script/script.js"
      ],
      "css": [
        "content-script/script.css"
      ]
    }
  ]
}