Little page Notepad

Little page Notepad

Create a note for page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "browser-action.png",
    "default_title": "Create a note for page",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "popup.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Create a note for page",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "name": "Little page Notepad",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage"
  ],
  "manifest_version": 2,
  "version": "0.5.3"
}