Sticky Notes

Sticky Notes

Produces a sticky note that sticks to the tab you are on. The sticky note scrolls with you down or up the page. To get one of these…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "external/jquery/jquery.js",
        "jquery-ui.min.js",
        "script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "manifest_version": 2,
  "name": "Sticky Notes",
  "version": "1.1.2",
  "browser_action": {
    "default_popup": "Popup.html",
    "browser_style": true,
    "default_icon": "StickyNote.png",
    "default_title": "Sticky Note Adder"
  },
  "icons": {
    "48": "StickyNote.png",
    "96": "StickyNote.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "Thumbtack.png",
    "delete-sign.png"
  ]
}