온리어스 자동장바구니 프로그램

온리어스 자동장바구니 확장프로그램을 통해서 1688 온라인 사이트에서 원하는 물건을 손쉽게 온리어스 사이트 장바구니 페이지로 해당 상품정보를 가져올 수 있습니다.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "온리어스 자동장바구니 프로그램",
  "description": "",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {}
  },
  "icons": {},
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://onlyus.co.kr/*",
        "https://buyertrade.taobao.com/*",
        "https://detail.1688.com/offer/*",
        "http://onlyus.co.kr/*"
      ],
      "js": [
        "jquery.js",
        "minified.js",
        "contents.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.naver.com/*",
      "*://127.0.0.1/*",
      "https://onlyus.co.kr/*",
      "http://onlyus.co.kr/*"
    ]
  },
  "host_permissions": [
    "https://onlyus.co.kr/*",
    "http://onlyus.co.kr/*"
  ]
}