Sort Maps Results
Sort Google Maps results by the number of reviews.
Sort Maps Resultsとは何ですか?
Sort Maps ResultsはRan Ribenzaftによって開発されたChromeの拡張機能で、その主な機能は「Sort Google Maps results by the number of reviews.」です。
拡張機能のスクリーンショット
Sort Maps Results拡張機能のCRXファイルをダウンロード
Sort Maps Results拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Sort Maps Results |
ID | okomdlgdhdhoclopfhbfidhnlifmbpbp |
公式URL | https://chromewebstore.google.com/detail/sort-maps-results/okomdlgdhdhoclopfhbfidhnlifmbpbp |
説明 | Sort Google Maps results by the number of reviews. |
ファイルサイズ | 27.81 KB |
インストール数 | 1,225 |
現在のバージョン | 1.4 |
最終更新日 | 2023-11-08 |
公開日 | 2023-06-15 |
評価 | 4.52/5 合計 25 レビュー |
開発者 | Ran Ribenzaft |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/ranrib/google-maps-sorter |
ヘルプページのURL | https://github.com/ranrib/google-maps-sorter |
対応言語 | 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" } } |