Ebay GSP filter

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

Ebay GSP filter क्या है?

Ebay GSP filter PrivateFox द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filters out all items that utilise the "Global Shipping Program(GSP)""।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ebay GSP filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Ebay GSP filter Ebay GSP filter
ID elgbjimnmkhnpbliadkgcpogfgncohin
आधिकारिक URL https://chromewebstore.google.com/detail/ebay-gsp-filter/elgbjimnmkhnpbliadkgcpogfgncohin
विवरण Filters out all items that utilise the "Global Shipping Program(GSP)"
फ़ाइल का आकार 29 KB
स्थापना संख्या 14
वर्तमान संस्करण 1.0
अंतिम अपडेट 2019-06-09
प्रकाशन तिथि 2019-06-09
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर PrivateFox
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gitlab.com/privatefox/ebay-gsp-filter
समर्थित भाषाएँ 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\/"
    ]
}