Markurz

Easily create and send tasks, notes, and reminders to your favorite productivity apps.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}