Page Memo

Page Memo

Provide user to write note in any page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "@pagememo",
      "strict_min_version": "48.0"
    }
  },
  "name": "__MSG_appName__",
  "version": "1.15.1resigned1",
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "memo.css"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "List All Memo",
    "default_popup": "list.html",
    "browser_style": true
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "default_locale": "en"
}