GC Labs Web 통합 결과 조회 서비스

GC Labs Web 통합 결과 조회 서비스

To access website, usually usually have to go through many steps such as putting ID and passwords or clicking numbers of buttons.…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GC Labs Web 통합 결과 조회 서비스",
  "version": "1.6",
  "content_scripts": [
    {
      "matches": [
        "https://www.gclabs.co.kr/*",
        "https://www.gclabs.net/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  }
}