Roaman

Roaman

Adds extra features to the note taking app called Roam Research

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Roaman",
  "options_page": "options.html",
  "version": "0.0.0.13",
  "description": "Adds extra features to the note taking app called Roam Research",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/roaman.png",
      "32": "images/roaman.png",
      "48": "images/roaman.png",
      "128": "images/roaman.png"
    }
  },
  "icons": {
    "16": "images/roaman.png",
    "32": "images/roaman.png",
    "48": "images/roaman.png",
    "128": "images/roaman.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://roamresearch.com/*"
      ],
      "js": [
        "main.js",
        "./lib/ScrollControl.js",
        "./lib/ScopeHighlight.js",
        "./lib/Autocomplete.js",
        "./lib/CaretPosition.js",
        "./lib/SidebarHover.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}