Change GeoLocation
This extension can change(fake) the geo location as you want
Что такое Change GeoLocation?
Change GeoLocation - это расширение Chrome, разработанное yume, и его основная функция - "This extension can change(fake) the geo location as you want".
Снимки экрана расширения
Скачать файл CRX расширения Change GeoLocation
Скачайте файлы расширений Change GeoLocation в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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" ] } } |