Easy Notes

Easy Notes

Extension to display activities related to current page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Easy Notes",
  "version": "4",
  "manifest_version": 2,
  "description": "Extension to display activities related to current page.",
  "browser_action": {
    "default_icon": "notes.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://www.notemyweb.com/*",
    "https://www.notemyweb.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html"
}