Examine source code of Memo

Inspect and view changes in 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
{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.1.25",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{a2a2e0b6-a1aa-4de1-b0eb-753eac5edce1}",
      "strict_min_version": "68.0"
    }
  },
  "icons": {
    "48": "icons/memo-48.png",
    "96": "icons/memo-96.png"
  },
  "browser_action": {
    "default_icon": "icons/memo.svg",
    "default_title": "__MSG_browserActionDefaultTitle__",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js",
      "memo.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Shift+Command+M"
      }
    }
  },
  "permissions": [
    "activeTab",
    "menus",
    "storage"
  ]
}