Sort Maps Results

Sort Google Maps results by the number of reviews.

Sort Maps Results là gì?

Sort Maps Results là một tiện ích mở rộng Chrome được phát triển bởi Ran Ribenzaft, và tính năng chính của nó là "Sort Google Maps results by the number of reviews.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sort Maps Results

Tải xuống các tệp mở rộng Sort Maps Results dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sort Maps Results Sort Maps Results
ID okomdlgdhdhoclopfhbfidhnlifmbpbp
URL Chính Thức https://chromewebstore.google.com/detail/sort-maps-results/okomdlgdhdhoclopfhbfidhnlifmbpbp
Mô tả Sort Google Maps results by the number of reviews.
Kích Thước Tệp 27.81 KB
Số Lần Cài Đặt 1,225
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2023-11-08
Ngày Phát Hành 2023-06-15
Đánh Giá 4.52/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Ran Ribenzaft
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ranrib/google-maps-sorter
URL Trang Trợ Giúp https://github.com/ranrib/google-maps-sorter
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}