Samsung Pass

Samsung Pass

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_SPassExtension_ContentScript_AppDisplayName__",
  "version": "2.2.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"
}