Examine source code of Business Card Mappy

Inspect and view changes in Business Card Mappy 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
{
  "name": "Business Card Mappy",
  "version": "2.3",
  "description": "Finds addresses in the web page you're on and pops up a map window.",
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "mappy_content_script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "https://maps.google.com/*",
    "https://maps.googleapis.com/*"
  ],
  "page_action": {
    "default_name": "Display Map",
    "default_icon": "marker.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https://maps.googleapis.com; img-src https://maps.googleapis.com",
  "browser_specific_settings": {
    "gecko": {
      "id": "{d72f15d7-7e0a-4921-be7b-f9da8fbf0730}"
    }
  }
}