Sort Maps Results
Sort Google Maps results by the number of reviews.
Qu'est-ce que Sort Maps Results ?
Sort Maps Results est une extension Chrome développée par Ran Ribenzaft, et sa fonction principale est "Sort Google Maps results by the number of reviews.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sort Maps Results
Téléchargez les fichiers d'extension Sort Maps Results au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Did you ever find yourself scrolling through tons of results in "Google Maps" but they only have very little reviews compared to the ones that have thousands? This extension will help you sort "Google Maps" results by the number of reviews descending. THE EXTENSION WORKS ON THE FOLLOWING URLS: * https://maps.google.com * https://google.com/maps It *won't* work on local "Google Maps" URLs. This extension adds the sorting button on the bottom right part. To use it: * Search for what you want. * Scroll down through the search results to fetch as many results as you want. This is because the sorting happens only on the client side. * Click on the sorting button and go back to the top.
Informations de Base sur l'Extension
Nom | Sort Maps Results |
ID | okomdlgdhdhoclopfhbfidhnlifmbpbp |
URL Officiel | https://chromewebstore.google.com/detail/sort-maps-results/okomdlgdhdhoclopfhbfidhnlifmbpbp |
Description | Sort Google Maps results by the number of reviews. |
Taille du Fichier | 27.81 KB |
Nombre d'Installations | 1,225 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2023-11-08 |
Date de Publication | 2023-06-15 |
Évaluation | 4.52/5 Total 25 Évaluations |
Développeur | Ran Ribenzaft |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ranrib/google-maps-sorter |
URL de la Page d'Aide | https://github.com/ranrib/google-maps-sorter |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sort Maps Results", "description": "Sort Google Maps results by the number of reviews.", "author": "Ran Ribenzaft", "version": "1.4", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/maps\/*", "https:\/\/maps.google.com\/*" ], "js": [ "src\/content_script.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/maps-sorter-16.png", "32": "images\/maps-sorter-32.png", "64": "images\/maps-sorter-64.png", "128": "images\/maps-sorter-128.png" } } |