Street View Randomizer

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

O que é Street View Randomizer?

Street View Randomizer é uma extensão do Chrome desenvolvida por jenya kats, e sua principal característica é "Random Street View from around the world inside a new tab.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Street View Randomizer

Baixe arquivos de extensão Street View Randomizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Street View Randomizer Street View Randomizer
ID adjckibppkfmanaalenmabegaahkgcip
URL Oficial https://chromewebstore.google.com/detail/street-view-randomizer/adjckibppkfmanaalenmabegaahkgcip
Descrição Random Street View from around the world inside a new tab.
Tamanho do Arquivo 177 KB
Contagem de Instalações 339
Versão Atual 2.3
Última Atualização 2020-06-01
Data de Publicação 2020-05-31
Classificação 4.91/5 Total de 11 Avaliações
Desenvolvedor jenya kats
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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!"
    }
}