타오바오 링크 변환기

타오바오 링크 변환기

타오바오 모바일 링크를 쉽게 변환해줍니다! made by hjreps 보촐

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "보촐",
  "manifest_version": 2,
  "name": "타오바오 링크 변환기",
  "description": "타오바오 모바일 링크를 쉽게 변환해줍니다! made by hjreps 보촐",
  "version": "1.0.0",
  "default_locale": "ko",
  "content_scripts": [
    {
      "matches": [
        "https://item.taobao.com/*",
        "*://m.intl.taobao.com/*"
      ],
      "js": [
        "scripts/taobaoContentScript.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "/imgs/icon.png",
    "32": "/imgs/icon.png",
    "48": "/imgs/icon.png",
    "128": "/imgs/icon.png"
  },
  "permissions": [
    "*://*.taobao.com/*",
    "*://*.tmall.com/*",
    "contextMenus"
  ]
}