Google Earth Photo Taker

Save photo of Google Earth view with attached positional information

Что такое Google Earth Photo Taker?

Google Earth Photo Taker - это расширение Chrome, разработанное https://flydronehub.com, и его основная функция - "Save photo of Google Earth view with attached positional information".

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

screenshot

Скачать файл CRX расширения Google Earth Photo Taker

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

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

                        Puts camera button in Google Earth web that allows you to save the current view as an image with positional information attached                    

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

Название Google Earth Photo Taker Google Earth Photo Taker
ID nigkfjnfbnlnkjkgoknmdkobpngidilo
Официальный URL https://chromewebstore.google.com/detail/google-earth-photo-taker/nigkfjnfbnlnkjkgoknmdkobpngidilo
Описание Save photo of Google Earth view with attached positional information
Размер файла 81.21 KB
Количество установок 491
Текущая Версия 1.2
Последнее Обновление 2020-11-01
Дата публикации 2020-10-22
Рейтинг 4.00/5 Всего 1 оценок
Разработчик https://flydronehub.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Earth Photo Taker",
    "manifest_version": 2,
    "version": "1.2",
    "description": "Save photo of Google Earth view with attached positional information",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "css": [
                "main.css"
            ],
            "matches": [
                "https:\/\/earth.google.com\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Google Earth Photo Taker"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads",
        "downloads.shelf"
    ],
    "externally_connectable": {
        "ids": [
            "jcinpbflfggmjghkmcleddhokoflnahe"
        ],
        "matches": [
            "https:\/\/earth.google.com\/*"
        ],
        "accepts_tls_channel_id": false
    },
    "web_accessible_resources": [
        "main.js"
    ],
    "icons": {
        "16": "16x16.png",
        "32": "32x32.png",
        "64": "64x64.png",
        "128": "128x128.png",
        "256": "256x256.png",
        "512": "512x512.png"
    }
}