MedBetterBUY

Enhance bid filters for eBay site

Co to jest MedBetterBUY?

MedBetterBUY to rozszerzenie Chrome opracowane przez http://devoresoftware.blogspot.com, a jego główną funkcją jest „Enhance bid filters for eBay site”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia MedBetterBUY

Pobierz pliki rozszerzeń MedBetterBUY w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Version 5.1 patches the code for an internal change Ebay recently made which broke the extension filtering.

Version 5 adds two new search listing filters, allowing users to filter out multiple countries and sellers in searches. Both filters are accessible from the Configure MedBetterBUY page (not the context menu). If you wish to list multiple countries or sellers, simply separate each by a comma.

Version 4.0 adds three new listing filters: Pre-Owned, Open box, and Refurbished.

Version 3.0 of MedBetterBUY adds support for filtering (hiding) search listings with zero bids or one or more bids, by user request. Remember that Seller information must be checked in Customize your search, so that bid information shows up in the search listings. (Yes, it is possible to check both and have no listings shown, unless you also include Buy It Now and other non-Auction listings in the Buying Format.)

MedBetterBuy is designed for eBay users who want greater control over their search results. The extension filters eBay searches to hide item entries from sellers who have a feedback score or rating percentage below or above values you specify, as well as the ability to filter out Top-rated sellers.

IMPORTANT: To use this script, check the Seller Information box in Show details of View Customize, which will display seller information in listings. Choose List View and not Gallery View. Otherwise, the information to filter will not be available, and MedBetterBuy will not work.

MedBetterBuy works via the context menu, generally accessed through right click or control-click of the mouse. There are five possible filters to apply to search listing from the menu: if a listing is from a top seller, a minimum and maximum rating percentage for the seller in a listing, and a minimum and maximum rating count for the seller in a listing.

The values for minimum and maximum can be set at the Configure options pages, which is the last selection on MedBetterBuy's context menu. Each filter can be checked on and off from the context menu. The current total of filtered out (not visible) listing is shown on the first line of the context menu.

Always refresh or reload the results page listing after changing a value, or checking and unchecking a filter. Although the page can dynamically change, the filter count and previously hidden entries may not properly update without a page refresh.

This extension has been tested with registered and unregistered use of USA's ebay.com. Other country sites currently use different internal website patterns. Support for more countries may be added later, based on user requests and feedback, as well as the effort to include more patterns.

For the contrary-minded, there is no prohibition or check against choosing values which will hide all unsponsored items in a listing, e.g. a Rating Score of greater than 100 will filter out all entries, as will a minimum count higher than the maximum. Zero values are ignored and treated as not active/checked.

Note that eBay can update–and have previously updated–their sites' structure in ways which cause the extension to fail, as it depends on a predictable internal pattern. Please report if MedBetterBuy fails after a site update, so it can be revised to work with eBay's modified website structure, if feasible.

 MedBetterBuy is based on the abef (A Better eBay Filter) Greasemonkey script that I developed and first released several years ago.

(because all the good names were already taken)                    

Podstawowe informacje o rozszerzeniu

Nazwa MedBetterBUY MedBetterBUY
ID jbdmomdbpmheafmpcbiioekjgnpibidj
Oficjalny URL https://chrome.google.com/webstore/detail/medbetterbuy/jbdmomdbpmheafmpcbiioekjgnpibidj
Opis Enhance bid filters for eBay site
Rozmiar pliku 28.05 KB
Liczba instalacji 71
Aktualna Wersja 5.1
Ostatnia Aktualizacja 2020-05-05
Data Publikacji 2020-05-05
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper http://devoresoftware.blogspot.com
Typ Płatności free
Strona Rozszerzenia https://devoresoftware.blogspot.com
Adres URL Strony Polityki Prywatności http://devoresoftware.blogspot.com/p/privacy-policy.html
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MedBetterBUY",
    "short_name": "MedBetterBUY",
    "author": "Michael Devore",
    "version": "5.1",
    "manifest_version": 2,
    "minimum_chrome_version": "68",
    "options_page": "options.html",
    "description": "Enhance bid filters for eBay site",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.ebay.com\/sch\/*",
                "https:\/\/www.ebay.com\/sch\/*"
            ],
            "css": [
                "options.css"
            ],
            "js": [
                "MedBetterBUY.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/www.ebay.com\/sch\/*",
        "https:\/\/www.ebay.com\/sch\/*",
        "contextMenus",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "auction-hammer_46873_16.png",
        "48": "auction-hammer_46873_48.png",
        "128": "auction-hammer_46873_128.png"
    }
}