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