nXr.iNote

nXr.iNote

Annotate and store text/quotes/images in a quote/image searchable library for writing accurately cited paper based on quotes/images.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "nXr.iNote",
  "description": "Annotate and store text/quotes/images in a quote/image searchable library for writing accurately cited paper based on quotes/images.",
  "version": "3.2.0",
  "manifest_version": 3,
  "icons": {
    "16": "icons/nXr_logo_16x16.png",
    "32": "icons/nXr_logo_32x32.png",
    "48": "icons/nXr_logo_48x48.png",
    "128": "icons/nXr_logo_128x128.png"
  },
  "action": {
    "default_title": "nXr.iNote-ext"
  },
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [],
      "css": [
        "tab/tab.css"
      ],
      "js": []
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "tab/tab.html",
        "tab/tab.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}