WherTo - Geo Generator

WherTo - Geo Generator

A Google/OSM extension to make cool 3d models of places 🌍, woot!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WherTo - Geo Generator",
  "version": "0.8",
  "description": "A Google/OSM extension to make cool 3d models of places 🌍, woot!",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/maps/*",
        "https://www.google.co.in/maps/*",
        "https://earth.google.com/*",
        "https://www.openstreetmap.org/*"
      ],
      "run_at": "document_idle",
      "js": [
        "lib/babylon.js",
        "lib/loaders.js",
        "lib/materials.js",
        "lib/serializers.js",
        "lib/sphericalmercator.js",
        "script.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "icons": {
    "16": "/icons/icon_16.png",
    "32": "/icons/icon_32.png",
    "48": "/icons/icon_48.png",
    "128": "/icons/icon_128.png"
  }
}