Ebay GSP filter

Filters out all items that utilise the "Global Shipping Program(GSP)"

Was ist Ebay GSP filter?

Ebay GSP filter ist eine Chrome-Erweiterung, die von PrivateFox entwickelt wurde, und ihr Hauptmerkmal ist "Filters out all items that utilise the "Global Shipping Program(GSP)"".

Erweiterungsscreenshots

screenshot
screenshot

Ebay GSP filter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ebay GSP filter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is a really small chrome extension that filters out items that are handled by Ebay's "Global shipping program".

The only reason this extension even exists is because Ebay don't seem to want to add such a filter by themselves
if you also got tired of seeing items with so called "import charges" that cost more than the item, then this is the extension for you.                    

Grundlegende Informationen zur Erweiterung

Name Ebay GSP filter Ebay GSP filter
ID elgbjimnmkhnpbliadkgcpogfgncohin
Offizielle URL https://chromewebstore.google.com/detail/ebay-gsp-filter/elgbjimnmkhnpbliadkgcpogfgncohin
Beschreibung Filters out all items that utilise the "Global Shipping Program(GSP)"
Dateigröße 29 KB
Installationsanzahl 14
Aktuelle Version 1.0
Letztes Update 2019-06-09
Veröffentlichungsdatum 2019-06-09
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler PrivateFox
Zahlungsart free
Erweiterungswebsite https://gitlab.com/privatefox/ebay-gsp-filter
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ebay GSP filter",
    "version": "1.0",
    "description": "Filters out all items that utilise the \"Global Shipping Program(GSP)\"",
    "manifest_version": 2,
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/www.ebay.com\/sch\/*"
            ]
        },
        {
            "run_at": "document_end",
            "js": [
                "content_uk.js"
            ],
            "matches": [
                "*:\/\/www.ebay.co.uk\/sch\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon_16.png"
    },
    "permissions": [
        "https:\/\/www.ebay.com\/",
        "https:\/\/www.ebay.co.uk\/"
    ]
}