Street View Randomizer

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

什麼是Street View Randomizer?

Street View Randomizer是由jenya kats開發的Chrome擴展程式,該擴展的主要功能是“Random Street View from around the world inside a new tab.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Street View Randomizer擴展crx文件

下載Street View Randomizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Street View Randomizer Street View Randomizer
ID adjckibppkfmanaalenmabegaahkgcip
官方網址 https://chromewebstore.google.com/detail/street-view-randomizer/adjckibppkfmanaalenmabegaahkgcip
簡介 Random Street View from around the world inside a new tab.
檔案大小 177 KB
安裝次數 339
目前版本 2.3
更新時間 2020-06-01
上架時間 2020-05-31
評分 4.91/5 共 11 次評分
開發者 jenya kats
電子郵箱 [email protected]
付費類型 free
支援的語言 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!"
    }
}