Joplin Search Integration

Joplin Search Integration

When using search, related Joplin notes are also displayed in the search results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Joplin Search Integration",
  "version": "0.6.4",
  "description": "When using search, related Joplin notes are also displayed in the search results.",
  "manifest_version": 3,
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/main.tsx-loader-Bt0krIj0.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "http://localhost:27583/*",
    "http://localhost:41184/*"
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "src/assets/16.png",
    "32": "src/assets/32.png",
    "48": "src/assets/48.png",
    "128": "src/assets/128.png"
  },
  "options_ui": {
    "page": "src/options/index.html"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/browser-polyfill-CKCvdr-s.js",
        "assets/loading-BDuD4HP7.js",
        "assets/trim-BoNFLr8p.js",
        "assets/main.tsx-CB0YgE_T.js"
      ],
      "use_dynamic_url": true
    }
  ]
}