Curate to Frameboard

Curate to Frameboard

Curate to Frameboard Chrome extension allows you to curate anything on the web with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Curate to Frameboard",
  "version": "0.0.5",
  "description": "Curate to Frameboard Chrome extension allows you to curate anything on the web with one click.",
  "icons": {
    "16": "/icons/16.png",
    "24": "/icons/24.png",
    "32": "/icons/32.png",
    "48": "/icons/48.png",
    "192": "/icons/192.png"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "contextMenus"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*.frameboard.com/*"
  ],
  "action": {},
  "background": {
    "service_worker": "service-worker.js"
  }
}