Filter And Sort for eBay

Reduce browse time and useless clicking: Show items in search results, sort by price on any page, and/or filter listings with items

Filter And Sort for eBay란 무엇입니까?

Filter And Sort for eBay은(는) https://amazi.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reduce browse time and useless clicking: Show items in search results, sort by price on any page, and/or filter listings with items"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Filter And Sort for eBay 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Filter eBay listings to identify multiple items to reduce search time for real items

Reduce clicking, see all items, even those hidden behind lists, in search results

After install, must set and save options first before performing first query

Updates: 
v1 initial roll out, labeled listings indicating if multiple items were found
v2 expanded applicable listings, lists items being sold in search result listing
v3 expanded to other countries supported by eBay, added more compatibility for additional listings
v4 now allows for internal sort of search results based on low price or high price of the range of items offered
v5 added option to only sort rather than query seller pages for item list
v6 made search more robust
v7 fixed elimination of switching pages
v8 updated UI and code is more robust                    

확장 프로그램 기본 정보

이름 Filter And Sort for eBay Filter And Sort for eBay
ID bldoicimcoafdgnogapghnbcmnhcgmee
공식 URL https://chromewebstore.google.com/detail/filter-and-sort-for-ebay/bldoicimcoafdgnogapghnbcmnhcgmee
설명 Reduce browse time and useless clicking: Show items in search results, sort by price on any page, and/or filter listings with items
파일 크기 8.29 KB
설치 횟수 192
현재 버전 1.83
최근 업데이트 2022-06-15
출시 날짜 2019-05-08
평점 3.80/5 총 5 개의 평점
개발자 https://amazi.me
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.amazi.me/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Filter And Sort for eBay",
    "description": "Reduce browse time and useless clicking: Show items in search results, sort by price on any page, and\/or filter listings with items",
    "version": "1.83",
    "background": {
        "page": "background.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "page_action": {
        "default_icon": "tab-icon.png",
        "default_title": "Filter And Sort for eBay"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.ebay.com\/*",
                "*:\/\/*.ebay.ca\/*",
                "*:\/\/*.ebay.co.uk\/*",
                "*:\/\/*.ebay.com.au\/*",
                "*:\/\/*.ebay.in\/*",
                "*:\/\/*.ebay.de\/*",
                "*:\/\/*.ebay.ar\/*",
                "*:\/\/*.ebay.fr\/*",
                "*:\/\/*.ebay.it\/*",
                "*:\/\/*.ebay.nl\/*",
                "*:\/\/*.ebay.es\/*",
                "*:\/\/*.ebay.ch\/*",
                "*:\/\/*.ebay.ie\/*",
                "*:\/\/*.ebay.ph\/*",
                "*:\/\/*.ebay.pl\/*",
                "*:\/\/*.ebay.be\/*",
                "*:\/\/*.ebay.com.hk\/*",
                "*:\/\/*.ebay.com.my\/*",
                "*:\/\/*.ebay.com.sg\/*"
            ],
            "js": [
                "filter.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}