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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |