Ebay Price Range Hider

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

Vad är Ebay Price Range Hider?

Ebay Price Range Hider är en Chrome-tillägg utvecklad av ropeney, och dess huvudfunktion är "This page will hide all products that are listed with a price range: $$ to $$".

Ladda ner Ebay Price Range Hider-förlängningens CRX-fil

Ladda ner Ebay Price Range Hider-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Ebay Price Range Hider Ebay Price Range Hider
ID nokajihphgnfpjmanbbnbimdcbnbmoac
Officiell webbadress https://chrome.google.com/webstore/detail/ebay-price-range-hider/nokajihphgnfpjmanbbnbimdcbnbmoac
Beskrivning This page will hide all products that are listed with a price range: $$ to $$
Filstorlek 34.06 KB
Antal Installationer 32
Aktuell Version 1.0
Senast Uppdaterad 2018-05-11
Publiceringsdatum 2018-05-11
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare ropeney
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}