Examine source code of TheModern.Press Workstation

Inspect and view changes in TheModern.Press Workstation 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.26.977",
  "name": "TheModern.Press Workstation",
  "description": "Chrome Extension for TheModern.Press Web Platform.",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "img/icon-black-64.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "iframe.html",
        "content.css",
        "img/*",
        "static/media/*",
        "img/*",
        "fonts/*"
      ],
      "matches": [
        "*://*/*",
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "img/icon-black-16.png",
    "48": "img/icon-black-48.png",
    "128": "img/icon-black-128.png"
  },
  "manifest_version": 3
}