Sort Maps Results

Sort Google Maps results by the number of reviews.

Τι είναι το Sort Maps Results;

Το Sort Maps Results είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ran Ribenzaft, και η κύρια λειτουργία του είναι "Sort Google Maps results by the number of reviews.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Sort Maps Results

Λήψη αρχείων επέκτασης 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"
    }
}