Note It - Notes & OCR

Note It - Notes & OCR

A feature-packed note-taking extension with OCR support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Note It - Notes & OCR",
  "description": "A feature-packed note-taking extension with OCR support.",
  "author": "Muhamet Smaili",
  "version": "1.2.0",
  "manifest_version": 3,
  "icons": {
    "16": "./icon/16 x 16.png",
    "32": "./icon/32 x 32.png",
    "48": "./icon/48 x 48.png",
    "128": "./icon/128 x 128.png"
  },
  "action": {
    "default_title": "NoteIt"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "clipboardWrite",
    "storage",
    "unlimitedStorage",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "./libraries/worker.min.js",
        "frameContent.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}