Geospoof

Spoof geolocation API for development purposes.

Geospoof란 무엇입니까?

Geospoof은(는) jorrete에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Spoof geolocation API for development purposes."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Spoof Geolocation API for development purposes.
Geospoof will create a new panel in you Development tools that will allow you to control the location provided by Geolocation API.
You can set the location by map, coordinates or reproduce a GPX track.
You will need to provide a OSM tiles URL to be able to use the extension, e.g:
https://{a-c}.yourser.ver/x/y/x/?key                    

확장 프로그램 기본 정보

이름 Geospoof Geospoof
ID lcmahiglcadceaijhkkjijhbikhndibp
공식 URL https://chrome.google.com/webstore/detail/geospoof/lcmahiglcadceaijhkkjijhbikhndibp
설명 Spoof geolocation API for development purposes.
파일 크기 157 KB
설치 횟수 181
현재 버전 0.1.6
최근 업데이트 2020-04-15
출시 날짜 2020-04-14
개발자 jorrete
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.1.6",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "71.0"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "page_action": {
        "default_icon": {
            "48": "images\/icon-48.png"
        }
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ],
    "minimum_chrome_version": "78.0",
    "devtools_page": "pages\/devtools_page.html",
    "options_ui": {
        "page": "pages\/options_page.html",
        "open_in_tab": true
    },
    "content_security_policy": "script-src 'self' 'sha256-GZIcz60Uwd6wT3vaYke\/atSr53TehbYAPepOa3d03Vw=';object-src 'self'",
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}