Notebook

Notebook

Clean, distraction-free rich text Notebook within your Chrome tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "1.0.1",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage"
  ],
  "options_page": "pages/help/index.html",
  "background": {
    "type": "module",
    "service_worker": "pages/background/index.js"
  },
  "action": {
    "default_icon": "icon128.png"
  },
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon128.png",
        "icon48.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}