Change GeoLocation

This extension can change(fake) the geo location as you want

Change GeoLocation là gì?

Change GeoLocation là một tiện ích mở rộng Chrome được phát triển bởi yume, và tính năng chính của nó là "This extension can change(fake) the geo location as you want".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Change GeoLocation

Tải xuống các tệp mở rộng Change GeoLocation dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension overrides the getCurrentPosition() method of Geolocation API in HTML5
Hence current position follows the setting you save in popup menu.

some sites seem not to work correctly as user mentioned in review.
I think its due to the timing the override the current position.
If you have a trouble, please notify the web page where this doesn't work.


FYI, try this site http://html5demos.com/geo                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Change GeoLocation Change GeoLocation
ID njjpmclekpigefnogajiknnheheacoaj
URL Chính Thức https://chromewebstore.google.com/detail/change-geolocation/njjpmclekpigefnogajiknnheheacoaj
Mô tả This extension can change(fake) the geo location as you want
Kích Thước Tệp 44.84 KB
Số Lần Cài Đặt 7,268
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-08-13
Ngày Phát Hành 2015-08-12
Đánh Giá 2.27/5 Tổng số 67 Đánh Giá
Nhà Phát Triển yume
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Change GeoLocation",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This extension can change(fake) the geo location as you want",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Setting",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}