Change GeoLocation
This extension can change(fake) the geo location as you want
Change GeoLocation란 무엇입니까?
Change GeoLocation은(는) yume에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension can change(fake) the geo location as you want"입니다.
확장 프로그램 스크린샷
Change GeoLocation 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension overrides the getCurrentPosition() method of Geolocation API in HTML5 Hence current position follows the setting you save in popup menu. some sites seem not to work correctly as user mentioned in review. I think its due to the timing the override the current position. If you have a trouble, please notify the web page where this doesn't work. FYI, try this site http://html5demos.com/geo
확장 프로그램 기본 정보
이름 | Change GeoLocation |
ID | njjpmclekpigefnogajiknnheheacoaj |
공식 URL | https://chromewebstore.google.com/detail/change-geolocation/njjpmclekpigefnogajiknnheheacoaj |
설명 | This extension can change(fake) the geo location as you want |
파일 크기 | 44.84 KB |
설치 횟수 | 7,268 |
현재 버전 | 1.0 |
최근 업데이트 | 2015-08-13 |
출시 날짜 | 2015-08-12 |
평점 | 2.27/5 총 67 개의 평점 |
개발자 | yume |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Change GeoLocation", "version": "1.0", "manifest_version": 2, "description": "This extension can change(fake) the geo location as you want", "icons": { "16": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" }, "browser_action": { "default_icon": "icons\/icon.png", "default_title": "Setting", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.3.min.js", "content.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] } } |