Sort By Review Count for Amazon

Sort By Review Count for Amazon sorts product search results by most reviewed.

Co je Sort By Review Count for Amazon?

Sort By Review Count for Amazon je rozšíření Chrome vyvinuté Griffiths Organization, LLC, a jeho hlavní funkcí je „Sort By Review Count for Amazon sorts product search results by most reviewed.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Sort By Review Count for Amazon

Stáhněte si soubory rozšíření Sort By Review Count for Amazon ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Update October 19, 2023:
Support for Microsoft Edge version was added. You can now login from the same account in Edge, Firefox, and Chrome!

Update October 10, 2023: 
Thanks everyone for your support via a paid version! Here are some feature updates:

(1) The Firefox version now available via the same user profile and login: https://addons.mozilla.org/en-US/firefox/addon/sort-by-review-count-on-amazon/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search

(2) The Microsoft Edge version is submitted and pending approval. With the improvements to Microsoft via OpenAI products, Microsoft browsers may become more popular (again). As with the Firefox and Chrome version, you can use your same user profile and login for the Edge version.


Sort By Review Count for Amazon allows you to sort product search results by most reviewed. It works best when you are in specific product department. After submitting a search on Amazon, a blue Sort By Review Count button appears in the right hand corner near the sort by drop down menu. Clicking that when in a product department (the column on the left of the search result images) will sort the results by review count.

Due to our company’s ongoing costs in development and responding to user requests, our Sort By Review Count app requires a small payment to use upon installation. Payment is provided  through a Stripe payment popup, which is an industry standard payment method since Chrome stopping processing payments for all the browser extensions in 2020. Thank you for supporting developers! For those that have already paid, please use the login here option at the popup to enable the app.

Once the Sort By Review Count extension is installed, a blue arrow icon will appear in the extensions list. We recommend you pin Sort By Review Count (SBRC) and click it ahead of an Amazon product search, as it is a helpful tool to find trusted and well-reviewed products.

A few quick tips for use: 

(1) Click the blue "Sort By Review Count" button that appears when you enter your search. We recommend you click the icon each time your search results show up to sort.

(2) We recommend users consider an adblock during web use. It makes all online web searches less clouded by ads and sponsored results.

(3) We recommend clicking a single "Department" (found on the left side column when you are on an Amazon search results page) to get a more accurate sort. For example, if you are searching for blenders, make sure you are in the "Household Blenders" Department.

The sort feature adds to the url in your current tab to sort the search results, and Chrome provides a browsing data notice for that (probably because it adds to the url in the current tab you have open) on extension install.                    

Základní Informace o Rozšíření

Název Sort By Review Count for Amazon Sort By Review Count for Amazon
ID gnbgpacaaggichanghjmabfmnlamlnia
Oficiální URL https://chromewebstore.google.com/detail/sort-by-review-count-for/gnbgpacaaggichanghjmabfmnlamlnia
Popis Sort By Review Count for Amazon sorts product search results by most reviewed.
Velikost souboru 29.33 KB
Počet instalací 6,527
Aktuální Verze 4.0
Poslední Aktualizace 2023-10-21
Datum Vydání 2020-10-23
Hodnocení 1.82/5 Celkem 125 Hodnocení
Vývojář Griffiths Organization, LLC
E-mail [email protected]
Typ Platby in_app
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sort By Review Count for Amazon",
    "version": "4.0",
    "manifest_version": 2,
    "description": "Sort By Review Count for Amazon sorts product search results by most reviewed.",
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon48.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "ExtPay.js",
            "background.js",
            "common.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.ae\/*",
                "*:\/\/*.amazon.at\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.cn\/*",
                "*:\/\/*.amazon.co.jp\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.com.au\/*",
                "*:\/\/*.amazon.com.br\/*",
                "*:\/\/*.amazon.com.mx\/*",
                "*:\/\/*.amazon.com.sg\/*",
                "*:\/\/*.amazon.com.tr\/*",
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.ie\/*",
                "*:\/\/*.amazon.in\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.nl\/*",
                "*:\/\/*.amazon.eg\/*",
                "*:\/\/*.amazon.sa\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "ExtPay.js",
                "common.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*.amazon.ae\/*",
        "*:\/\/*.amazon.at\/*",
        "*:\/\/*.amazon.ca\/*",
        "*:\/\/*.amazon.cn\/*",
        "*:\/\/*.amazon.co.jp\/*",
        "*:\/\/*.amazon.co.uk\/*",
        "*:\/\/*.amazon.com.au\/*",
        "*:\/\/*.amazon.com.br\/*",
        "*:\/\/*.amazon.com.mx\/*",
        "*:\/\/*.amazon.com.sg\/*",
        "*:\/\/*.amazon.com.tr\/*",
        "*:\/\/*.amazon.com\/*",
        "*:\/\/*.amazon.de\/*",
        "*:\/\/*.amazon.es\/*",
        "*:\/\/*.amazon.fr\/*",
        "*:\/\/*.amazon.ie\/*",
        "*:\/\/*.amazon.in\/*",
        "*:\/\/*.amazon.it\/*",
        "*:\/\/*.amazon.nl\/*",
        "*:\/\/*.amazon.eg\/*",
        "*:\/\/*.amazon.sa\/*"
    ]
}