Board

Board

This extension allows you to make any website on the web as your writing board

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Board",
  "version": "0.12.21",
  "description": " This extension allows you to make any website on the web as your writing board",
  "action": {
    "default_icon": "assets/images/icon.png"
  },
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon128.png",
    "128": "assets/images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "manifest_version": 3
}