Popup Notes

Popup Notes

Take quick notes while you surf. What could be more simple?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/eventPage.js"
    ],
    "persistent": false
  },
  "manifest_version": 2,
  "name": "Popup Notes",
  "description": "Take quick notes while you surf. What could be more simple?",
  "version": "2.0",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Popup Notes!"
  },
  "offline_enabled": true,
  "short_name": "Popup Notes",
  "permissions": [
    "storage",
    "contextMenus"
  ]
}