Google Earth Photo Taker

Save photo of Google Earth view with attached positional information

Google Earth Photo Taker란 무엇입니까?

Google Earth Photo Taker은(는) https://flydronehub.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save photo of Google Earth view with attached positional information"입니다.

확장 프로그램 스크린샷

screenshot

Google Earth Photo Taker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}