Google Earth Photo Taker

Save photo of Google Earth view with attached positional information

¿Qué es Google Earth Photo Taker?

Google Earth Photo Taker es una extensión de Chrome desarrollada por https://flydronehub.com, y su función principal es "Save photo of Google Earth view with attached positional information".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Google Earth Photo Taker

Descarga archivos de extensión Google Earth Photo Taker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Google Earth Photo Taker Google Earth Photo Taker
ID nigkfjnfbnlnkjkgoknmdkobpngidilo
URL Oficial https://chromewebstore.google.com/detail/google-earth-photo-taker/nigkfjnfbnlnkjkgoknmdkobpngidilo
Descripción Save photo of Google Earth view with attached positional information
Tamaño del Archivo 81.21 KB
Cantidad de Instalaciones 491
Versión Actual 1.2
Última Actualización 2020-11-01
Fecha de Publicación 2020-10-22
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador https://flydronehub.com
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}