Sort Maps Results
Sort Google Maps results by the number of reviews.
O que é Sort Maps Results?
Sort Maps Results é uma extensão do Chrome desenvolvida por Ran Ribenzaft, e sua principal característica é "Sort Google Maps results by the number of reviews.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sort Maps Results
Baixe arquivos de extensão Sort Maps Results no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Sort Maps Results |
ID | okomdlgdhdhoclopfhbfidhnlifmbpbp |
URL Oficial | https://chromewebstore.google.com/detail/sort-maps-results/okomdlgdhdhoclopfhbfidhnlifmbpbp |
Descrição | Sort Google Maps results by the number of reviews. |
Tamanho do Arquivo | 27.81 KB |
Contagem de Instalações | 1,225 |
Versão Atual | 1.4 |
Última Atualização | 2023-11-08 |
Data de Publicação | 2023-06-15 |
Classificação | 4.52/5 Total de 25 Avaliações |
Desenvolvedor | Ran Ribenzaft |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ranrib/google-maps-sorter |
URL da Página de Ajuda | https://github.com/ranrib/google-maps-sorter |
Idiomas Suportados | 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" } } |