어!? 바나나 코인 정보 for 업비트 (A-BANANA)

어!? 바나나 코인 정보 for 업비트 (A-BANANA)

업비트에서 추가적인 코인 정보를 볼수 있는 보조 확장 프로그램입니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "어!? 바나나 코인 정보 for 업비트 (A-BANANA)",
  "description": "업비트에서 추가적인 코인 정보를 볼수 있는 보조 확장 프로그램입니다.",
  "version": "24.05.18",
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.upbit.com/*"
      ],
      "js": [
        "lib/tradingview_widgets.js",
        "js/vendor.js",
        "js/content_script.js"
      ],
      "css": [
        "abanana_styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "notifications",
    "webNavigation"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*",
        "/lib/*"
      ],
      "matches": [
        "*://*.upbit.com/*"
      ]
    }
  ]
}