Sort Maps Results

Sort Maps Results

Sort Google Maps results by the number of reviews.

Additional files are visible only to premium users

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