Change GeoLocation

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

Change GeoLocation क्या है?

Change GeoLocation yume द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension can change(fake) the geo location as you want"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Change GeoLocation एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Change GeoLocation Change GeoLocation
ID njjpmclekpigefnogajiknnheheacoaj
आधिकारिक URL https://chromewebstore.google.com/detail/change-geolocation/njjpmclekpigefnogajiknnheheacoaj
विवरण This extension can change(fake) the geo location as you want
फ़ाइल का आकार 44.84 KB
स्थापना संख्या 7,268
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-08-13
प्रकाशन तिथि 2015-08-12
रेटिंग 2.27/5 कुल 67 रेटिंग्स
डेवलपर yume
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        ]
    }
}