Ebay Price Range Hider

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

Qu'est-ce que Ebay Price Range Hider ?

Ebay Price Range Hider est une extension Chrome développée par ropeney, et sa fonction principale est "This page will hide all products that are listed with a price range: $$ to $$".

Télécharger le fichier CRX de l'extension Ebay Price Range Hider

Téléchargez les fichiers d'extension Ebay Price Range Hider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Ebay Price Range Hider Ebay Price Range Hider
ID nokajihphgnfpjmanbbnbimdcbnbmoac
URL Officiel https://chrome.google.com/webstore/detail/ebay-price-range-hider/nokajihphgnfpjmanbbnbimdcbnbmoac
Description This page will hide all products that are listed with a price range: $$ to $$
Taille du Fichier 34.06 KB
Nombre d'Installations 32
Version Actuelle 1.0
Dernière Mise à Jour 2018-05-11
Date de Publication 2018-05-11
Évaluation 5.00/5 Total 3 Évaluations
Développeur ropeney
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}