Street View Randomizer

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

What is Street View Randomizer?

Street View Randomizer is a Chrome extension developed by jenya kats, and its main feature is "Random Street View from around the world inside a new tab.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Street View Randomizer Extension CRX File

Download Street View Randomizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension will display a random panoramic street view any time you open a new tab. 

UPDATE: I have received a spike in users, which is amazing! However, this means Google Maps has begun to charge me for requests from the application. I am working to overcome this obstacle and continue to make this usable and cost free for everyone. In the meantime, there is a quota on how many requests we are sending a day which can lead to some errors when you open a tab. Not very pretty :( Bear with me until I figure out a better system here.

Utilizes Google Maps API                    

Extension Basic Information

Name Street View Randomizer Street View Randomizer
ID adjckibppkfmanaalenmabegaahkgcip
Official URL https://chromewebstore.google.com/detail/street-view-randomizer/adjckibppkfmanaalenmabegaahkgcip
Description Random Street View from around the world inside a new tab.
File Size 177 KB
Installation Count 339
Current Version 2.3
Last Updated 2020-06-01
Publish Date 2020-05-31
Rating 4.91/5 Total 11 Ratings
Developer jenya kats
Email [email protected]
Payment Type free
Supported Languages en
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!"
    }
}