Self-stick notes

Self-stick notes

You can use self-stick notes on any page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Self-stick notes",
  "version": "1.5.0.0",
  "description": "__MSG_pluginDescription__",
  "manifest_version": 2,
  "background": {
    "page": "bg.html"
  },
  "options_page": "options/options.html",
  "default_locale": "en_US",
  "permissions": [
    "tabs",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "page_action": {
    "default_icon": "icon19.png",
    "default_title": "__MSG_pageActionTitle__"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "thirdparty/jquery.min.js",
        "thirdparty/jquery-ui.min.js",
        "util.js",
        "elements.js",
        "popup.js",
        "contents.js"
      ],
      "css": [
        "contentStyles.css"
      ]
    }
  ]
}