Walrus Browser Extension

Walrus Browser Extension

Easily add OTP by scanning QR codes, simplifying your two-factor authentication process. Save passwords for auto sign-ins to apps.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "version": "2.0.5",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "128": "images/icon-logo.png"
  },
  "action": {
    "default_icon": {
      "128": "images/icon-logo.png"
    },
    "default_title": "__MSG_extShortName__",
    "default_popup": "view/popup.html"
  },
  "options_ui": {
    "page": "view/options.html",
    "open_in_tab": false
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "oauth2": {
    "client_id": "292457304165-u8ve4j79gag5o231n5u2pdtdrbfdo1hh.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "background": {
    "service_worker": "./dist/background.js"
  },
  "sandbox": {
    "pages": [
      "view/argon.html"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "identity",
    "scripting",
    "tabs"
  ],
  "optional_permissions": [
    "clipboardWrite"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "./dist/argon.js",
        "./dist/content.js",
        "./dist/import.js",
        "./dist/options.js",
        "./dist/permissions.js",
        "./dist/popup.js"
      ],
      "matches": [
        "https://workspace.walrusid.com/*"
      ]
    }
  ],
  "offline_enabled": true,
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-eval'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dist/inject.js",
        "chrome-extension://*/_locales/**/**",
        "_locales/en/messages.json",
        "Walrus Browser Plugin/en/messages.json"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}