Examine source code of DOCX Viewer

Inspect and view changes in DOCX 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 docx documents using docxjs.",
  "manifest_version": 2,
  "name": "DOCX Viewer",
  "version": "1.5.1",
  "author": "def00111",
  "browser_specific_settings": {
    "gecko": {
      "id": "{b534ad55-4cab-41e0-9141-9f8d00373d93}",
      "strict_min_version": "125.0"
    }
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "mypage.html"
  ],
  "browser_action": {
    "default_title": "DOCX Viewer",
    "default_icon": {
      "16": "docx-file-format-symbol-16.png",
      "32": "docx-file-format-symbol-32.png"
    }
  },
  "icons": {
    "16": "docx-file-format-symbol-16.png",
    "32": "docx-file-format-symbol-32.png",
    "64": "docx-file-format-symbol-64.png",
    "128": "docx-file-format-symbol-128.png"
  }
}