Web Sticky Notes

Web Sticky Notes

Quick notes that stick on web-pages to ease future reference

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web Sticky Notes",
  "version": "1.2",
  "description": "Quick notes that stick on web-pages to ease future reference",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  }
}