Examine source code of Newired Extension

Inspect and view changes in Newired Extension 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
{
  "manifest_version": 3,
  "name": "Newired Extension",
  "description": "Launch an interactive guidance layer on top of any of your existing web applications.",
  "version": "52.25.0.0",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "permissions": [
    "scripting",
    "webNavigation",
    "cookies",
    "storage",
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content/bubble-frame.js"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "snippet-injector.js",
        "script-injector.js",
        "overlay/*/*.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}