Mini Sticky Notes

Mini Sticky Notes

Helps to quickly take a note of anything, anytime.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mini Sticky Notes",
  "description": "Helps to quickly take a note of anything, anytime.",
  "version": "1.3.2",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Mini Sticky Notes",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": true,
    "page": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "js/custom.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}