Harvest Clickable Notes

Harvest Clickable Notes

Make Harvest links in notes, to be clickable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Harvest Clickable Notes",
  "manifest_version": 3,
  "version": "1.0.0",
  "description": "Make Harvest links in notes, to be clickable.",
  "content_scripts": [
    {
      "matches": [
        "https://*.harvestapp.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}