Eggdome Chrome-Extension

Eggdome Chrome-Extension

에그돔확장프로그램은 간편하게 타오바오, 알리바바, TMALL, VVIC상품을 한글로 검색하여 직구, 배송대행, 수입대행신청을 할 수 있습니다

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Eggdome Chrome-Extension",
  "version": "1.1.6",
  "description": "에그돔확장프로그램은 간편하게 타오바오, 알리바바, TMALL, VVIC상품을 한글로 검색하여 직구, 배송대행, 수입대행신청을 할 수 있습니다",
  "manifest_version": 3,
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "static/css/content.css"
      ],
      "js": [
        "static/js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "notifications"
  ],
  "host_permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "/images/favicon.png",
      "32": "/images/favicon.png",
      "48": "/images/favicon.png",
      "128": "/images/favicon.png"
    },
    "default_title": "에그돔확장프로그램"
  },
  "icons": {
    "16": "/images/favicon.png",
    "32": "/images/favicon.png",
    "48": "/images/favicon.png",
    "128": "/images/favicon.png"
  }
}