Auth Autofill

Auth Autofill

A browser extension that autofills identity verification services in South Korea

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "version": "2.0.5",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "homepage_url": "https://github.com/ParkJeongseop/AuthAutoFill",
  "author": "__MSG_developer__",
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_title": "__MSG_extension_name__",
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "autofill.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}