Roam Highlighter

Roam Highlighter

Web highlighter for Roam Research

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Roam Highlighter",
  "description": "Web highlighter for Roam Research",
  "version": "0.4.4",
  "manifest_version": 2,
  "icons": {
    "16": "./icon/icon-16.png",
    "48": "./icon/icon-48.png",
    "128": "./icon/icon-128.png"
  },
  "background": {
    "scripts": [
      "app/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "128": "./icon/icon-128.png"
    },
    "default_title": "Roam Highlighter"
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "css": [
        "static/css/app.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "static/js/*.js",
    "static/js/*.js.map",
    "static/css/*.css",
    "static/css/*.css.map"
  ],
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}