Manual Geolocation

Override HTML5 GeoLocation API and return an arbitrary location.

Manual Geolocationคืออะไร?

Manual Geolocation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย maurice และคุณลักษณะหลักของมันคือ "Override HTML5 GeoLocation API and return an arbitrary location."

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

screenshot

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

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

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

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