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
公式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\/"
    ]
}