Sort By Reviews for Amazon
Sort By Reviews for Amazon allows users to easily and quickly sort Amazon search results by most reviewed.
¿Qué es Sort By Reviews for Amazon?
Sort By Reviews for Amazon es una extensión de Chrome desarrollada por Sort By Reviews for Amazon, y su función principal es "Sort By Reviews for Amazon allows users to easily and quickly sort Amazon search results by most reviewed.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Sort By Reviews for Amazon
Descarga archivos de extensión Sort By Reviews for Amazon en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
⭐ Leave a Review! ------------------------- If you like the extension, leave us a review! (Hopefully 5 star!). If you don't like the extension or it doesn't work, drop us an email and we'll try and resolve the problem! ℹ️ How do you use the extension? ------------------------- 1️⃣ Search for a product on Amazon 2️⃣ Choose a department 3️⃣ Click on "Sort by Reviews" (Or Press Alt + S) 4️⃣ Enjoy! 🆓 This extension will always be free! If you want to say thanks and buy me a drink 🍻 then feel free to donate! 🙏 🚀 Features ------------------------- ⭐️ An easy to use 1 click solution to be able to sort by review count. ⭐️ Global compatibility with all known Amazon stores! Be that Amazon.ca, Amazon.com, Amazon.co.uk... etc ⭐️ Multi-browser compatibility, works with all Chromium based browsers! ⭐️ Ability to show the user that they need to choose a department before being able to sort. ⭐️ Ability to show the user when the search results are already sorted. ⭐️ Easy to use hotkey to view the extensions instructions, simply navigate to Amazon and press ALT + A (A as in Amazon) ⭐️ Easy to use hotkey to sort the product search results, simply navigate to Amazon and press ALT + S (S as in Sort) 📝 Changelog ------------------------- ➤ 1.0 - ➤ The ability to sort by review count ➤ 1.1 - ➤ Prevented sorting pages that cannot be sorted to avoid confusion. (An Amazon restriction) - ➤ Added tooltips to help users see why the sort button is disabled - ➤ Added the ability for users to left click the pinned extension to see instructions with screenshots on how to use the extension. - ➤ Added a donation button inside the instructions popup and as a context menu option when right clicking in an Amazon website. ➤ 1.2 - ➤ Prevented already sorted pages from being sorted again to avoid confusion. - ➤ Added tooltips to help users see why the sort button is disabled because the page is already sorted. - ➤ Improved the speed in which the sort functionality becomes available. - ➤ Added the hotkey of Alt + A, so when you are on Amazon you can simply press the hotkey to see the instructions. - ➤ Added the hotkey of Alt + S, so when you are on Amazon you can simply press the hotkey to sort by reviews. ➤ 1.3 - ➤ Updated the name of the extension to "Sort by Reviews for Amazon" for consistency and simplicity. ➤ 1.4 - ➤ Added support for India, Egypt, European Union and Czech Republic - ➤ Improved support for Saudi Arabia & Singapore 🔏 Your privacy ------------------------- We respect our users privacy, this extension does not in any way, shape or forms track, collect, sell or do anything with your personal data, the extension has no connection to any website, service or server. 🔏 Legal ------------------------- "Sort By Reviews for Amazon" is not affiliated, partnered with, endorsed by, or connected to Amazon or its partners in any way, shape, or form. This extension is simply a user made quality of life improvement to help other users find the most reviewed products that they're searching for.
Información Básica de la Extensión
Nombre | Sort By Reviews for Amazon |
ID | fgimjhgonodgijfcglpjidipajjjifgp |
URL Oficial | https://chromewebstore.google.com/detail/sort-by-reviews-for-amazo/fgimjhgonodgijfcglpjidipajjjifgp |
Descripción | Sort By Reviews for Amazon allows users to easily and quickly sort Amazon search results by most reviewed. |
Tamaño del Archivo | 1.93 MB |
Cantidad de Instalaciones | 1,926 |
Versión Actual | 1.4 |
Última Actualización | 2023-07-02 |
Fecha de Publicación | 2023-05-12 |
Calificación | 5.00/5 Total de 14 Calificaciones |
Desarrollador | Sort By Reviews for Amazon |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Sort By Reviews for Amazon", "description": "Sort By Reviews for Amazon allows users to easily and quickly sort Amazon search results by most reviewed.", "version": "1.4", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "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.sa\/*", "*:\/\/*.amazon.com.sg\/*", "*:\/\/*.amazon.com.tr\/*", "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.dk\/*", "*:\/\/*.amazon.es\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.nl\/*", "*:\/\/*.amazon.no\/*", "*:\/\/*.amazon.se\/*", "*:\/\/*.amazon.sg\/*", "*:\/\/*.amazon.sa\/*", "*:\/\/*.amazon.eg\/*", "*:\/\/*.amazon.cz\/*", "*:\/\/*.amazon.eu\/*", "*:\/\/*.amazon.in\/*" ], "css": [ "content.css", "lib\/tippy.css", "lib\/scale.css" ], "js": [ "lib\/popper.min.js", "lib\/tippy-bundle.umd.min.js", "content.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "contextMenus" ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+A", "mac": "Alt+A" } }, "click_sort_by_review_count": { "suggested_key": { "default": "Alt+S", "mac": "Alt+S" }, "description": "Click Sort by Reviews" } } } |