Popup Notes

Sticky notes for your web browser
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,
  "name": "Popup Notes",
  "short_name": "Popup Notes",
  "version": "0.0.2",
  "description": "Sticky notes for your web browser",
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "images/note_icon.png",
      "48": "images/note_icon.png",
      "128": "images/note_icon.png"
    }
  },
  "icons": {
    "16": "images/note_icon.png",
    "48": "images/note_icon.png",
    "128": "images/note_icon.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "popupnote@obayomi.com",
      "strict_min_version": "58.0"
    },
    "safari": {
      "strict_min_version": "14",
      "strict_max_version": "20"
    }
  }
}