Location Guard

Hide your geographic location from websites.

Location Guardคืออะไร?

Location Guard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kostas Chatzikokolakis และคุณลักษณะหลักของมันคือ "Hide your geographic location from websites."

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

screenshot
screenshot

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

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

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

                        Modern browsers such as Google Chrome can tell websites where you're located in order to provide location-aware functionality. Your geographic location obtained via JavaScript is often highly accurate, which can be a violation of your privacy.

This extension allows enjoying geolocation applications while protecting your privacy, by reporting a fake location to websites, after adding a certain amount of "noise" to the real one. The noise is randomly selected in a way that protects the real location from being accurately inferred. There's also an option to use a fixed location, instead of adding noise to the real one.

IMPORTANT: Location Guard protects against JavaScript-based geolocation (which has very high accuracy), NOT IP-based geolocation (which typically has low accuracy). If a website detects your coarse location from your IP address, then use a VPN, Location Guard is not meant to solve this problem.

To report an issue with Location Guard please use the following page: https://github.com/chatziko/location-guard/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Location Guard Location Guard
ID cfohepagpmnodfdmjliccbbigdkfcgia
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/location-guard/cfohepagpmnodfdmjliccbbigdkfcgia
คำอธิบาย Hide your geographic location from websites.
ขนาดไฟล์ 593 KB
จำนวนการติดตั้ง 353,844
เวอร์ชันปัจจุบัน 2.5.0
อัปเดตครั้งล่าสุด 2022-03-19
วันที่เผยแพร่ 2019-09-21
คะแนน 3.79/5 รวมทั้งหมด 303 คะแนน
ผู้พัฒนา Kostas Chatzikokolakis
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/chatziko/location-guard#location-guard
URL หน้าช่วยเหลือ https://github.com/chatziko/location-guard/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Location Guard",
    "description": "Hide your geographic location from websites.",
    "author": "Kostas Chatzikokolakis",
    "icons": {
        "16": "images\/pin_16.png",
        "32": "images\/pin_32.png",
        "64": "images\/pin_64.png",
        "128": "images\/pin_128.png"
    },
    "version": "2.5.0",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "js\/common.js",
            "js\/main.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/pin_16.png",
            "19": "images\/pin_19.png",
            "20": "images\/pin_20.png",
            "32": "images\/pin_32.png",
            "38": "images\/pin_38.png",
            "40": "images\/pin_40.png",
            "64": "images\/pin_64.png"
        },
        "default_popup": "popup.html",
        "default_title": "Location Guard"
    },
    "content_scripts": [
        {
            "js": [
                "js\/common.js",
                "js\/content\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}