Ebay Price Range Hider

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

Cos'è Ebay Price Range Hider?

Ebay Price Range Hider è un'estensione di Chrome sviluppata da ropeney, e la sua funzione principale è "This page will hide all products that are listed with a price range: $$ to $$".

Scarica il file CRX dell'estensione Ebay Price Range Hider

Scarica i file di estensione Ebay Price Range Hider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Ebay Price Range Hider Ebay Price Range Hider
ID nokajihphgnfpjmanbbnbimdcbnbmoac
URL Ufficiale https://chrome.google.com/webstore/detail/ebay-price-range-hider/nokajihphgnfpjmanbbnbimdcbnbmoac
Descrizione This page will hide all products that are listed with a price range: $$ to $$
Dimensione del File 34.06 KB
Conteggio Installazioni 32
Versione Corrente 1.0
Ultimo Aggiornamento 2018-05-11
Data di Pubblicazione 2018-05-11
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore ropeney
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}