Geospoof

Spoof geolocation API for development purposes.

Geospoofคืออะไร?

Geospoof เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jorrete และคุณลักษณะหลักของมันคือ "Spoof geolocation API for development purposes."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Geospoof ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}