Sticky Note

Sticky Note

Stay inside your context - put Stickies all over the web. They will stay in place and you will have a convenient list of them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "asset/sticky-32.png",
    "default_title": "Sticky Note"
  },
  "content_scripts": [
    {
      "css": [
        "asset/stickies.css"
      ],
      "js": [
        "asset/stickies.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "description": "Stay inside your context - put Stickies all over the web. They will stay in place and you will have a convenient list of them.",
  "icons": {
    "32": "asset/sticky-32.png",
    "48": "asset/sticky-48.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiA7hcrxTbbPr4Ocu76w4pyl4kGLdw4d6fjKS7Fvjrkd4y8LUmc9k642+k1p/3SJQ/nmfAFYKGd9g3L9Ki//+LTjqHlf7h2Bb2WzJ1aoh2MOdYlPhkHTZgm6QZT1KswGLW9hsZNKGgxHQPe1Y8VAUQRGPATC6e53cjQjrx6v5ol72CoaRgxta/caAxBCHFeg3rTSiK5sJVdYEK2ecl3Ih6tFDADRNHEhZCoUZyw2qa2ZQstF2tyFaj1eRGGoqwU+ohmIubNJCl7TCt38TRuD3rD0ryLC5tCzxrv2kG4e7SBXSTH9Gt16EWh0tHyz6dpop4f5CRD3mr6oZ9CHaqwbckQIDAQAB",
  "manifest_version": 2,
  "name": "Sticky Note",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.1.1",
  "web_accessible_resources": []
}