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."입니다.
확장 프로그램 스크린샷
Street View Randomizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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!" } } |