Manual Geolocation

Override HTML5 GeoLocation API and return an arbitrary location.

Manual Geolocation란 무엇입니까?

Manual Geolocation은(는) maurice에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Override HTML5 GeoLocation API and return an arbitrary location."입니다.

확장 프로그램 스크린샷

screenshot

Manual Geolocation 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension allows you to override the HTML Geolocation in the browser, it can be used for development of HTML Geo location based apps.                    

확장 프로그램 기본 정보

이름 Manual Geolocation Manual Geolocation
ID jpiefjlgcjmciajdcinaejedejjfjgki
공식 URL https://chrome.google.com/webstore/detail/manual-geolocation/jpiefjlgcjmciajdcinaejedejjfjgki
설명 Override HTML5 GeoLocation API and return an arbitrary location.
파일 크기 1.06 MB
설치 횟수 20,000
현재 버전 1.1.0
최근 업데이트 2019-10-31
출시 날짜 2019-10-31
평점 2.67/5 총 238 개의 평점
개발자 maurice
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "name": "Manual Geolocation",
    "description": "Override HTML5 GeoLocation API and return an arbitrary location.",
    "version": "1.1.0",
    "content_scripts": [
        {
            "js": [
                "fakegeo_content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "blue_dot_circle.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/maps.googleapis.com https:\/\/ajax.googleapis.com https:\/\/maps.gstatic.com https:\/\/mts0.googleapis.com https:\/\/mts1.googleapis.com; object-src 'self'",
    "permissions": [
        "geolocation",
        "webNavigation",
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}