Pazter

Context menu using chromes api to be able to paste worknotes
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Pazter",
  "version": "0.0.0.1",
  "description": "Context menu using chromes api to be able to paste worknotes",
  "icons": {
    "68": "icons/68icon.png",
    "128": "icons/128icon.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "storage",
    "tabs",
    "nativeMessaging"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "menu.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}