Tab Notes: Simple Notepad

A clean, distraction-free notepad with rich text formatting, keyboard shortcuts, save with sync, themes, customizations, and more.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "short_name": "Tab Notes",
  "version": "1.1.6",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage"
  ],
  "options_page": "pages/help/index.html",
  "background": {
    "type": "module",
    "service_worker": "pages/background/index.js"
  },
  "action": {
    "default_title": "__MSG_extensionShortName__",
    "default_icon": "icon128.png"
  },
  "icons": {
    "16": "icon16.png",
    "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": [
        "*://*/*"
      ]
    }
  ]
}