Scratchpad

Scratchpad

A plain-text notepad with autosave, sync, file export (download), and themes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "4.3",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "short_name": "Scratchpad",
  "default_locale": "en",
  "author": "Mythical5th.com",
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "pages/popup/popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "chromeos": "Alt+S",
        "linux": "Alt+S",
        "mac": "Command+S",
        "windows": "Alt+S"
      }
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "offscreen"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "background": {
    "service_worker": "sw.js",
    "type": "module"
  }
}