Live Street View

Live Street View

Instantly see a Google Live Street View of any supported location. Easily share and save your favourite views.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Live Street View",
  "version": "1.0.2",
  "description": "Instantly see a Google Live Street View of any supported location. Easily share and save your favourite views.",
  "background": {
    "scripts": [
      "Kernel.js"
    ]
  },
  "web_accessible_resources": [
    "Kernel.js",
    "files/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "Content.js",
        "BrowsersFix.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "homepage_url": "http://www.livesatellitestreetview.com/",
  "browser_action": {
    "default_icon": "icons/icon128.png",
    "default_title": "Click Here"
  }
}