Ebay Price Range Hider

This page will hide all products that are listed with a price range: $$ to $$

Ebay Price Range Hider란 무엇입니까?

Ebay Price Range Hider은(는) ropeney에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This page will hide all products that are listed with a price range: $$ to $$"입니다.

Ebay Price Range Hider 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Hide the items that have price ranges on them from your EBay feed list.                    

확장 프로그램 기본 정보

이름 Ebay Price Range Hider Ebay Price Range Hider
ID nokajihphgnfpjmanbbnbimdcbnbmoac
공식 URL https://chrome.google.com/webstore/detail/ebay-price-range-hider/nokajihphgnfpjmanbbnbimdcbnbmoac
설명 This page will hide all products that are listed with a price range: $$ to $$
파일 크기 34.06 KB
설치 횟수 32
현재 버전 1.0
최근 업데이트 2018-05-11
출시 날짜 2018-05-11
평점 5.00/5 총 3 개의 평점
개발자 ropeney
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ebay Price Range Hider",
    "description": "This page will hide all products that are listed with a price range: $$ to $$",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.ebay.com\/*",
                "https:\/\/*.ebay.com.au\/*",
                "https:\/\/*.ebay.at\/*",
                "https:\/\/*.ebay.be\/*",
                "https:\/\/*.ebay.ca\/*",
                "https:\/\/*.ebay.cn\/*",
                "https:\/\/*.ebay.cz\/*",
                "https:\/\/*.ebay.dk\/*",
                "https:\/\/*.ebay.fi\/*",
                "https:\/\/*.ebay.fr\/*",
                "https:\/\/*.ebay.de\/*",
                "https:\/\/*.ebay.gr\/*",
                "https:\/\/*.ebay.hk\/*",
                "https:\/\/*.ebay.hu\/*",
                "https:\/\/*.ebay.in\/*",
                "https:\/\/*.ebay.ie\/*",
                "https:\/\/*.ebay.it\/*",
                "https:\/\/*.ebay.co.kr\/*",
                "https:\/\/*.ebay.my\/*",
                "https:\/\/*.ebay.com.mx\/*",
                "https:\/\/*.ebay.nl\/*",
                "https:\/\/*.ebay.no\/*",
                "https:\/\/*.ebay.ph\/*",
                "https:\/\/*.ebay.pl\/*",
                "https:\/\/*.ebay.pt\/*",
                "https:\/\/*.ebay.ru\/*",
                "https:\/\/*.ebay.es\/*",
                "https:\/\/*.ebay.ch\/*",
                "https:\/\/*.ebay.vn\/*",
                "https:\/\/*.ebay.com.sg\/*",
                "https:\/\/*.ebay.com.tw\/*",
                "https:\/\/*.ebay.co.th\/*",
                "https:\/\/*.ebay.co.uk\/*"
            ],
            "js": [
                "jquery.min.js",
                "hide.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}