Examine source code of Samsung Pass

Inspect and view changes in Samsung Pass 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": "__MSG_SPassExtension_ContentScript_AppDisplayName__",
  "version": "4.6.0",
  "short_name": "Samsung Pass",
  "icons": {
    "16": "images/logo16.png",
    "24": "images/logo24.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Samsung Pass",
    "default_icon": {
      "16": "images/logo16.png",
      "24": "images/logo24.png",
      "32": "images/logo32.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "./content-scripts/loginFormDetector.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    },
    {
      "all_frames": true,
      "js": [
        "./content-scripts/autofill.js"
      ],
      "css": [
        "./styles/samsungPassIcon.css",
        "./styles/accountsPopup.css",
        "./styles/advicePopup.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "./content-scripts/saveCredentialPopup.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles/saveCredentialPopup.css",
        "styles/colors.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.svg",
        "images/assets/*.svg",
        "content-scripts/*.map",
        "_favicon/*",
        "fonts/*.ttf"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "./static/js/background.js",
    "type": "module"
  },
  "permissions": [
    "nativeMessaging",
    "storage",
    "favicon"
  ],
  "default_locale": "en_US",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}