Ebay GSP filter
Filters out all items that utilise the "Global Shipping Program(GSP)"
Qu'est-ce que Ebay GSP filter ?
Ebay GSP filter est une extension Chrome développée par PrivateFox, et sa fonction principale est "Filters out all items that utilise the "Global Shipping Program(GSP)"".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ebay GSP filter
Téléchargez les fichiers d'extension Ebay GSP filter 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
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.
Informations de Base sur l'Extension
Nom | Ebay GSP filter |
ID | elgbjimnmkhnpbliadkgcpogfgncohin |
URL Officiel | https://chromewebstore.google.com/detail/ebay-gsp-filter/elgbjimnmkhnpbliadkgcpogfgncohin |
Description | Filters out all items that utilise the "Global Shipping Program(GSP)" |
Taille du Fichier | 29 KB |
Nombre d'Installations | 14 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2019-06-09 |
Date de Publication | 2019-06-09 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | PrivateFox |
Type de Paiement | free |
Site Web de l'Extension | https://gitlab.com/privatefox/ebay-gsp-filter |
Langues Prises en Charge | 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\/" ] } |