QuickMemo Popup

QuickMemo Popup is a handy browser extension that allows you to jot down notes quickly and conveniently using a pop-up window. With QuickMemo Popup, you can capture important thoughts, ideas, and reminders on the fly.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Simply Notes",
  "description": "Displays a pop-up that lets you take note and is saved for viewing later.",
  "version": "1.0",
  "icons": {
    "32": "icons/logo_32.png",
    "64": "icons/logo_64.png",
    "128": "icons/logo_128.png"
  },
  "applications": {
    "gecko": {
      "strict_min_version": "52.0a1",
      "id": "{e49c7fc3-8e47-4298-b86b-d8b3bf7e84f5}"
    }
  },
  "browser_action": {
    "default_icon": "icons/logo_64.png",
    "default_title": "Simply Notes",
    "default_popup": "pagebar/popup.html"
  },
  "permissions": [
    "storage"
  ]
}