Google Earth Photo Taker

Save photo of Google Earth view with attached positional information

Qu'est-ce que Google Earth Photo Taker ?

Google Earth Photo Taker est une extension Chrome développée par https://flydronehub.com, et sa fonction principale est "Save photo of Google Earth view with attached positional information".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Earth Photo Taker

Téléchargez les fichiers d'extension Google Earth Photo Taker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Google Earth Photo Taker Google Earth Photo Taker
ID nigkfjnfbnlnkjkgoknmdkobpngidilo
URL Officiel https://chromewebstore.google.com/detail/google-earth-photo-taker/nigkfjnfbnlnkjkgoknmdkobpngidilo
Description Save photo of Google Earth view with attached positional information
Taille du Fichier 81.21 KB
Nombre d'Installations 491
Version Actuelle 1.2
Dernière Mise à Jour 2020-11-01
Date de Publication 2020-10-22
Évaluation 4.00/5 Total 1 Évaluations
Développeur https://flydronehub.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}