Examine source code of Online Docs Viewer

Inspect and view changes in Online Docs 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": "Allows you to view documents online using microsoft online docs viewer.",
  "manifest_version": 2,
  "name": "Online Docs Viewer",
  "version": "1.5resigned1",
  "applications": {
    "gecko": {
      "id": "{b414ad44-4cab-41e0-9141-9f8d00373d93}",
      "strict_min_version": "57.0"
    }
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "content-disposition.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://*.officeapps.live.com/*",
        "*://onedrive.live.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": false
  }
}