Ebay GSP filter

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

Ebay GSP filter là gì?

Ebay GSP filter là một tiện ích mở rộng Chrome được phát triển bởi PrivateFox, và tính năng chính của nó là "Filters out all items that utilise the "Global Shipping Program(GSP)"".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ebay GSP filter

Tải xuống các tệp mở rộng Ebay GSP filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ebay GSP filter Ebay GSP filter
ID elgbjimnmkhnpbliadkgcpogfgncohin
URL Chính Thức https://chromewebstore.google.com/detail/ebay-gsp-filter/elgbjimnmkhnpbliadkgcpogfgncohin
Mô tả Filters out all items that utilise the "Global Shipping Program(GSP)"
Kích Thước Tệp 29 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-06-09
Ngày Phát Hành 2019-06-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển PrivateFox
Loại Thanh Toán free
Trang Web Mở Rộng https://gitlab.com/privatefox/ebay-gsp-filter
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}