Chrome Litchi Virtual Mission

Adds ability to export mission from mission hub as google earth virtual tour

Что такое Chrome Litchi Virtual Mission?

Chrome Litchi Virtual Mission - это расширение Chrome, разработанное bazuchan, и его основная функция - "Adds ability to export mission from mission hub as google earth virtual tour".

Снимки экрана расширения

Скачать файл CRX расширения Chrome Litchi Virtual Mission

Скачайте файлы расширений Chrome Litchi Virtual Mission в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension provides same functionality as Virtual Litchi Mission app https://mavicpilots.com/threads/virtual-litchi-mission.31109/

Usage:
1. Install google-earth(-pro) desktop app.
2. Go to https://flylitchi.com/hub
3. Select a mission, click "MISSIONS"->"Export as VLM", it will download .kml file
4. Click downloaded .kml file to open it in google earth (or import it into google arth manually).
5. In google earth click mission name under "Temporary places" and double-click "Virtual mission"
6. Enjoy :)                    

Основная информация о расширении

Название Chrome Litchi Virtual Mission Chrome Litchi Virtual Mission
ID ccpleclnjidgphbmhphdfeejfifeekak
Официальный URL https://chromewebstore.google.com/detail/chrome-litchi-virtual-mis/ccpleclnjidgphbmhphdfeejfifeekak
Описание Adds ability to export mission from mission hub as google earth virtual tour
Размер файла 8.36 KB
Количество установок 11,536
Текущая Версия 0.2.1
Последнее Обновление 2019-06-29
Дата публикации 2019-06-29
Рейтинг 4.56/5 Всего 18 оценок
Разработчик bazuchan
Тип оплаты free
Официальный сайт расширения https://github.com/bazuchan/pythonvlm
URL страницы помощи https://mavicpilots.com/threads/yet-another-virtual-litchi-mission-google-chrome-extension.45629/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Litchi Virtual Mission",
    "version": "0.2.1",
    "description": "Adds ability to export mission from mission hub as google earth virtual tour",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/flylitchi.com\/hub*"
            ],
            "js": [
                "hook.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "cevlm.png"
    },
    "manifest_version": 2
}