Street View Randomizer

Street View Randomizer

Random Street View from around the world inside a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Street View Randomizer",
  "manifest_version": 2,
  "version": "2.3",
  "description": "Random Street View from around the world inside a new tab.",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "data.js"
    ]
  },
  "icons": {
    "32": "icon.png"
  },
  "content_security_policy": "script-src 'self' https://maps.googleapis.com/; object-src 'self'",
  "permissions": [
    "https://maps.googleapis.com/*"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Open a New Tab!"
  }
}