Examine source code of Norton Family

Inspect and view changes in Norton Family 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
{
  "name": "__MSG_appName__",
  "author": "NortonLifeLock Inc",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "version": "3.9.0.17",
  "icons": {
    "16": "Images/NF_16x16.png",
    "32": "Images/NF_32x32.png",
    "48": "Images/NF_48x48.png",
    "128": "Images/NF_128x128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "NF_Script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "docstart.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "serviceworker.js"
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "nativeMessaging",
    "declarativeNetRequest",
    "scripting"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "httpruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}