Examine source code of Oxford Pronunciation Viewer

Inspect and view changes in Oxford Pronunciation Viewer 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
{
  "description": "The current version of Oxford Online Dictionary show pronunciation at the bottom of each page. This addon will help bring it to the top of each page, so that you can see it easily.",
  "manifest_version": 2,
  "name": "Oxford Pronunciation Viewer",
  "version": "1.1resigned1",
  "icons": {
    "48": "icons/icon-48.png"
  },
  "applications": {
    "gecko": {
      "id": "oxford-pronunciation-viewer@mozilla.org",
      "strict_min_version": "45.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.oxforddictionaries.com/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ]
}