Street View Randomizer

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

Co je Street View Randomizer?

Street View Randomizer je rozšíření Chrome vyvinuté jenya kats, a jeho hlavní funkcí je „Random Street View from around the world inside a new tab.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Street View Randomizer

Stáhněte si soubory rozšíření Street View Randomizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Street View Randomizer Street View Randomizer
ID adjckibppkfmanaalenmabegaahkgcip
Oficiální URL https://chromewebstore.google.com/detail/street-view-randomizer/adjckibppkfmanaalenmabegaahkgcip
Popis Random Street View from around the world inside a new tab.
Velikost souboru 177 KB
Počet instalací 339
Aktuální Verze 2.3
Poslední Aktualizace 2020-06-01
Datum Vydání 2020-05-31
Hodnocení 4.91/5 Celkem 11 Hodnocení
Vývojář jenya kats
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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!"
    }
}