Examine source code of Auto login

Inspect and view changes in Auto login 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "action": {
    "browser_style": false,
    "default_title": "Search Kro GST Assistant",
    "default_popup": "gst_popup.html",
    "default_icon": "32.png"
  },
  "name": "Auto login ",
  "description": "autologin Online e-Filing Extension",
  "version": "1.3.32",
  "icons": {
    "16": "/16.png",
    "32": "/32.png",
    "48": "/48.png",
    "128": "/128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/searchKroExtension.htm*"
      ],
      "js": [
        "jquery-3.7.0.js",
        "main.js"
      ],
      "all_frames": false,
      "run_at": "document_end",
      "default_title": "Search Kro GST Assistant",
      "default_popup": "gst_popup.html"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "bg-wrapper.js"
  },
  "permissions": [
    "cookies",
    "tabs",
    "webNavigation",
    "activeTab",
    "scripting",
    "downloads"
  ],
  "optional_permissions": [
    "contentSettings"
  ]
}