Hack Pad

Hack Pad

Note keeping extension similar to sticky notes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hack Pad",
  "author": "Jatin Varlyani <[email protected]>",
  "description": "Note keeping extension similar to sticky notes.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "images/hackpad-icon.png"
    },
    "default_title": "Hack Pad",
    "default_popup": "pages/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "version": "1.0"
}