Roam Research Markdown Links

Roam Research Markdown Links

Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Roam Research Markdown Links",
  "version": "1.6.0",
  "description": "Automatically pastes links on Roam Research as Markdown and set the link text as the linked page title",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://roamresearch.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}