Sort By Review Count for Amazon

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

什么是Sort By Review Count for Amazon?

Sort By Review Count for Amazon是由Griffiths Organization, LLC开发的Chrome扩展程序,该扩展的主要功能是“Sort By Review Count for Amazon sorts product search results by most reviewed.”。

扩展截图

screenshot

下载Sort By Review Count for Amazon扩展crx文件

下载Sort By Review Count for Amazon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Sort By Review Count for Amazon Sort By Review Count for Amazon
ID gnbgpacaaggichanghjmabfmnlamlnia
官方URL https://chromewebstore.google.com/detail/sort-by-review-count-for/gnbgpacaaggichanghjmabfmnlamlnia
简介 Sort By Review Count for Amazon sorts product search results by most reviewed.
文件大小 29.33 KB
安装次数 6,527
当前版本 4.0
更新时间 2023-10-21
上架时间 2020-10-23
评分 1.82/5 共125次评分
开发者 Griffiths Organization, LLC
电子邮箱 [email protected]
付费类型 in_app
支持的语言 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\/*"
    ]
}