Street View Randomizer

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

Street View Randomizerคืออะไร?

Street View Randomizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jenya kats และคุณลักษณะหลักของมันคือ "Random Street View from around the world inside a new tab."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Street View Randomizer

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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!"
    }
}