WEBZEN Starter

WEBZEN Starter

크롬 브라우저에서 WEBZEN 게임 서비스를 원활하게 실행할 수 있도록 도와줍니다

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WEBZEN Starter",
  "version": "1.8.0",
  "description": "크롬 브라우저에서 WEBZEN 게임 서비스를 원활하게 실행할 수 있도록 도와줍니다",
  "icons": {
    "128": "webzen.png"
  },
  "homepage_url": "http://www.webzen.co.kr/",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.webzen.co.kr/*",
        "https://*.webzen.co.kr/*",
        "http://*.game.naver.com/*",
        "https://*.game.naver.com/*",
        "http://*.hangame.com/*",
        "https://*.hangame.com/*",
        "http://*.game.daum.net/*",
        "https://*.game.daum.net/*",
        "http://*.pmang.com/*",
        "https://*.pmang.com/*",
        "http://*.ongate.com/*",
        "https://*.ongate.com/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://*.webzen.co.kr/*",
      "https://*.webzen.co.kr/*",
      "http://*.game.naver.com/*",
      "https://*.game.naver.com/*",
      "http://*.hangame.com/*",
      "https://*.hangame.com/*",
      "http://*.game.daum.net/*",
      "https://*.game.daum.net/*",
      "http://*.pmang.com/*",
      "https://*.pmang.com/*",
      "http://*.ongate.com/*",
      "https://*.ongate.com/*"
    ]
  }
}