Examine source code of Page Memo

Inspect and view changes in Page Memo source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
}