Note Pad Extension

Note Pad Extension

This extension is a simple, but sufficient text editor to take notes! It is also pretty easy to use is very accessible.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Note Pad Extension",
  "description": "This extension is a simple, but sufficient text editor to take notes! It is also pretty easy to use is very accessible.",
  "version": "1.5",
  "version_name": "1.5",
  "manifest_version": 3,
  "icons": {
    "128": "./img/icon-128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Open Notes",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "downloads"
  ]
}