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.”。
擴展截圖
下載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 |
ID | gnbgpacaaggichanghjmabfmnlamlnia |
官方網址 | 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\/*" ] } |