Examine source code of OAS - Password Manager

Inspect and view changes in OAS - Password Manager 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": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appName__",
  "version": "1.2.0",
  "description": "__MSG_extDesc__",
  "default_locale": "zh_CN",
  "author": "gmrz",
  "homepage_url": "https://www.nationauth.cn/",
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "96": "images/logo-96.png",
    "128": "images/logo-128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "libs/log.js",
        "content/utils.js",
        "content/autoextract.js",
        "content/autofill.js",
        "content/autofiller.js",
        "content/hint.js",
        "content/notificationBar.js",
        "content/idaas.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": true,
      "js": [
        "content/injectUtil.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "css": [
        "content/autofill.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "web_accessible_resources": [
    "notification/bar.html",
    "notification/bar.js",
    "notification/bar.css",
    "content/inject.js",
    "confrim/confrim.html",
    "confrim/confrim.js"
  ],
  "browser_action": {
    "default_title": "登录插件",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "privacy",
    "storage"
  ],
  "devtools_page": "./devtool/devtools.html",
  "browser_specific_settings": {
    "gecko": {
      "id": "{5525b222-88b5-4587-973c-6673c612c5bc}"
    }
  }
}