Google Earth Photo Taker

Save photo of Google Earth view with attached positional information

O que é Google Earth Photo Taker?

Google Earth Photo Taker é uma extensão do Chrome desenvolvida por https://flydronehub.com, e sua principal característica é "Save photo of Google Earth view with attached positional information".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Earth Photo Taker

Baixe arquivos de extensão Google Earth Photo Taker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Google Earth Photo Taker Google Earth Photo Taker
ID nigkfjnfbnlnkjkgoknmdkobpngidilo
URL Oficial https://chromewebstore.google.com/detail/google-earth-photo-taker/nigkfjnfbnlnkjkgoknmdkobpngidilo
Descrição Save photo of Google Earth view with attached positional information
Tamanho do Arquivo 81.21 KB
Contagem de Instalações 491
Versão Atual 1.2
Última Atualização 2020-11-01
Data de Publicação 2020-10-22
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor https://flydronehub.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}