Ebay Price Range Hider

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

O que é Ebay Price Range Hider?

Ebay Price Range Hider é uma extensão do Chrome desenvolvida por ropeney, e sua principal característica é "This page will hide all products that are listed with a price range: $$ to $$".

Baixar o arquivo CRX da Extensão Ebay Price Range Hider

Baixe arquivos de extensão Ebay Price Range Hider no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Ebay Price Range Hider Ebay Price Range Hider
ID nokajihphgnfpjmanbbnbimdcbnbmoac
URL Oficial https://chrome.google.com/webstore/detail/ebay-price-range-hider/nokajihphgnfpjmanbbnbimdcbnbmoac
Descrição This page will hide all products that are listed with a price range: $$ to $$
Tamanho do Arquivo 34.06 KB
Contagem de Instalações 32
Versão Atual 1.0
Última Atualização 2018-05-11
Data de Publicação 2018-05-11
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor ropeney
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}