Ebay GSP filter

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

什麼是Ebay GSP filter?

Ebay GSP filter是由PrivateFox開發的Chrome擴展程式,該擴展的主要功能是“Filters out all items that utilise the "Global Shipping Program(GSP)"”。

擴展截圖

screenshot
screenshot

下載Ebay GSP filter擴展crx文件

下載Ebay GSP filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/"
    ]
}