네이버쇼핑 상품명 조합기

네이버쇼핑 상품명 조합기

네이버쇼핑키워드수집기입니다. 원하는 제품 검색후 수집하기를 누르면 가장많이 사용된 차례대로 보여줍니다. 그리고 상위 3개의 키워드를 제외하고 나머지 키워드들을 셔플해서 나열해서 보여줍니다. 나열된5가지의 키워드들은 복사…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "네이버쇼핑 상품명 조합기",
  "version": "1.0",
  "icons": {
    "128": "icons/icon128.png"
  },
  "permissions": [],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://search.shopping.naver.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}