board-keeper

board-keeper

A chrome extension to keep your visited boards of Mural. Miro, Conceptboard are on the Roadmap..

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "board-keeper",
  "version": "1.4.2",
  "manifest_version": 3,
  "description": "A chrome extension to keep your visited boards of Mural. Miro, Conceptboard are on the Roadmap..",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_title": "board keeper",
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "34": "icon-34.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://app.mural.co/*",
        "*://miro.com/*",
        "*://app.conceptboard.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-128.png",
        "icon-34.png"
      ],
      "extension_ids": [
        "hednhhboekcpnkofjobimpfgalippjhf"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'none'",
    "content_scripts": "script-src 'self'; object-src 'none'"
  }
}