Sort Maps Results
Sort Google Maps results by the number of reviews.
Sort Maps Results क्या है?
Sort Maps Results Ran Ribenzaft द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sort Google Maps results by the number of reviews."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Sort Maps Results एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |