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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://amazi.me, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Filter And Sort for eBay

Λήψη αρχείων επέκτασης Filter And Sort for eBay σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}