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.”。

扩展截图

screenshot
screenshot

下载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 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"
    }
}