KB Sticky Notes

KB Sticky Notes

Sticky notes while you browse the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "KB Sticky Notes",
  "version": "1.26",
  "manifest_version": 2,
  "description": "Sticky notes while you browse the web.",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles/app.css"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "bower_components/jquery-ui/ui/jquery-ui.js",
        "scripts/sticky-notes.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Sticky Notes"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "web_accessible_resources": [
    "styles/images/*.png"
  ]
}