천봉 번역기

천봉 번역기

천봉의 텍스트를 한국어로 번역 및 표시해줍니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Seol",
  "name": "천봉 번역기",
  "description": "천봉의 텍스트를 한국어로 번역 및 표시해줍니다.",
  "version": "1.2.0",
  "version_name": "1.2.0",
  "browser_action": {
    "default_icon": {
      "16": "icons/icon_16.png",
      "32": "icons/icon_32.png",
      "48": "icons/icon_48.png",
      "64": "icons/icon_64.png",
      "128": "icons/icon_128.png"
    },
    "default_title": "천봉 번역기",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "64": "icons/icon_64.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "*://tenhou.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://tenhou.net/3/",
        "*://tenhou.net/3/?L*",
        "*://tenhou.net/3/?C*",
        "*://tenhou.net/3/?log*",
        "*://tenhou.net/3/?wg*",
        "*://tenhou.net/5*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://tenhou.net/0/wg*",
        "*://tenhou.net/make_lobby.html?lobby"
      ],
      "js": [
        "make.js"
      ],
      "run_at": "document_end"
    }
  ]
}