Sticky Notes Extension

Sticky Notes Extension

Easily add and organise sticky notes to your new tab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sticky Notes Extension",
  "short_name": "Sticky Notes",
  "version": "1.0.0",
  "description": "Easily add and organise sticky notes to your new tab page.",
  "permissions": [
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "sticky.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "browser_style": false,
    "default_title": "Sticky Notes Tab"
  },
  "icons": {
    "64": "icons/64.png",
    "128": "icons/128.png"
  }
}