Improved NAVER land filter - 네이버 부동산 추가 필터

Improved NAVER land filter - 네이버 부동산 추가 필터

Extended filter for NAVER land web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Improved NAVER land filter - 네이버 부동산 추가 필터",
  "description": "Extended filter for NAVER land web",
  "version": "1.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/icon_16.png",
      "32": "/images/icon_32.png",
      "64": "/images/icon_64.png",
      "128": "/images/icon_128.png",
      "512": "/images/icon_512.png"
    }
  },
  "icons": {
    "16": "/images/icon_16.png",
    "32": "/images/icon_32.png",
    "64": "/images/icon_64.png",
    "128": "/images/icon_128.png",
    "512": "/images/icon_512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://new.land.naver.com/*"
      ],
      "js": [
        "js/filter-gap-investment.js"
      ]
    }
  ],
  "options_page": "popup.html"
}