Google Earth Photo Taker

Save photo of Google Earth view with attached positional information

Wat is Google Earth Photo Taker?

Google Earth Photo Taker is een Chrome-extensie ontwikkeld door https://flydronehub.com, en de belangrijkste functie is "Save photo of Google Earth view with attached positional information".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Google Earth Photo Taker

Download Google Earth Photo Taker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Google Earth Photo Taker Google Earth Photo Taker
ID nigkfjnfbnlnkjkgoknmdkobpngidilo
Officiële URL https://chromewebstore.google.com/detail/google-earth-photo-taker/nigkfjnfbnlnkjkgoknmdkobpngidilo
Beschrijving Save photo of Google Earth view with attached positional information
Bestandsgrootte 81.21 KB
Aantal Installaties 491
Huidige Versie 1.2
Laatst Bijgewerkt 2020-11-01
Publicatiedatum 2020-10-22
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://flydronehub.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}