Ebay GSP filter
Filters out all items that utilise the "Global Shipping Program(GSP)"
Cos'è Ebay GSP filter?
Ebay GSP filter è un'estensione di Chrome sviluppata da PrivateFox, e la sua funzione principale è "Filters out all items that utilise the "Global Shipping Program(GSP)"".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Ebay GSP filter
Scarica i file di estensione Ebay GSP filter 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
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.
Informazioni di Base sull'Estensione
Nome | Ebay GSP filter |
ID | elgbjimnmkhnpbliadkgcpogfgncohin |
URL Ufficiale | https://chromewebstore.google.com/detail/ebay-gsp-filter/elgbjimnmkhnpbliadkgcpogfgncohin |
Descrizione | Filters out all items that utilise the "Global Shipping Program(GSP)" |
Dimensione del File | 29 KB |
Conteggio Installazioni | 14 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2019-06-09 |
Data di Pubblicazione | 2019-06-09 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | PrivateFox |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://gitlab.com/privatefox/ebay-gsp-filter |
Lingue Supportate | 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\/" ] } |