이마트 점포 상품 기본 표시

이마트 점포 상품 기본 표시

이마트가 점포 상품만을 기본으로 보이게 합니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "이마트 점포 상품 기본 표시",
  "description": "이마트가 점포 상품만을 기본으로 보이게 합니다.",
  "version": "1.5",
  "author": "Sin Jeong-hun",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "http://emart.ssg.com/category/*",
    "http://emart.ssg.com/disp/category.ssg*",
    "http://emart.ssg.com/disp/ajaxCategoryItemList.ssg*",
    "http://emart.ssg.com/search.ssg*",
    "http://emart.ssg.com/item/itemView.ssg*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "background": {
    "scripts": [
      "modifyUrl.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://emart.ssg.com/item/itemView.ssg*"
      ],
      "js": [
        "breadcrumbs.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "settings.html"
  }
}