Examine source code of Help With Tech

Inspect and view changes in Help With Tech 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",
  "manifest_version": 2,
  "name": "Help With Tech",
  "description": "Easily and seamlessly receive virtual technology assistance",
  "version": "4.0.1",
  "author": "Michael Kokkines and Martin Bolotin",
  "browser_action": {
    "default_icon": "logo/symbol.png",
    "default_title": "Help With Tech",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "logo/favicon.png",
    "48": "logo/symbol.png",
    "128": "logo/symbol.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/utilities.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "scripts/background.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://platform.modernreliance.com/*",
      "http://localhost:3000/*",
      "http://localhost:3001/*"
    ],
    "ids": [
      "mcpgklclkeadcbcafclmcnhknfajnkim",
      "nfefamlencinechoemehbfibaocjkifm",
      "glaaljidklkppfipdhbicicklnlofnjb"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-2NuiAkCkVwEdmCzEknUhMpJkfAi0Tm7/du4qZC4H5uQ=' https://code.jquery.com https://zoom.us/ https://source.zoom.us/ https://js.stripe.com; object-src 'self'"
}