Sticky Notes Everywhere | Digital Mercury

Sticky Notes Everywhere | Digital Mercury

Save and edit sticky notes on any site. 1. Create it | 2. Drag and position it | 3. Save it for the next visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sticky Notes Everywhere | Digital Mercury",
  "description": "Save and edit sticky notes on any site. 1. Create it | 2. Drag and position it | 3. Save it for the next visit.",
  "version": "1.1",
  "manifest_version": 2,
  "icons": {
    "16": "favicon.png",
    "128": "favicon.png"
  },
  "browser_action": {
    "default_popup": "./index.html",
    "default_icon": "./favicon.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      },
      "description": "Opens index.html"
    }
  },
  "background": {
    "scripts": [
      "app.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}