Markurz

Markurz

Easily create and send tasks, notes, and reminders to your favorite productivity apps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Markurz",
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "name": "Markurz",
  "description": "Easily create and send tasks, notes, and reminders to your favorite productivity apps.",
  "version": "1.9.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Markurz"
  },
  "permissions": [
    "cookies",
    "tabs",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/main.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  }
}