Street View Randomizer

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

Street View Randomizer là gì?

Street View Randomizer là một tiện ích mở rộng Chrome được phát triển bởi jenya kats, và tính năng chính của nó là "Random Street View from around the world inside a new tab.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Street View Randomizer

Tải xuống các tệp mở rộng Street View Randomizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Street View Randomizer Street View Randomizer
ID adjckibppkfmanaalenmabegaahkgcip
URL Chính Thức https://chromewebstore.google.com/detail/street-view-randomizer/adjckibppkfmanaalenmabegaahkgcip
Mô tả Random Street View from around the world inside a new tab.
Kích Thước Tệp 177 KB
Số Lần Cài Đặt 339
Phiên Bản Hiện Tại 2.3
Cập Nhật Lần Cuối 2020-06-01
Ngày Phát Hành 2020-05-31
Đánh Giá 4.91/5 Tổng số 11 Đánh Giá
Nhà Phát Triển jenya kats
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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!"
    }
}