Send to Google Maps

Sends the current text selection with 1-Click to Google Maps.

Send to Google Maps란 무엇입니까?

Send to Google Maps은(는) Send To Maps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sends the current text selection with 1-Click to Google Maps."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Send to Google Maps 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to send a selected address on any website directly to Google Maps. 

Therefore the extension adds an item to the Context Menu if text is selected. By right clicking on the selected text the context menu opens and you can choose between different options: 

- Search for the selected text in Maps
- Show your current position in Maps
- If you need directions:
Just go to the options page and enter up to five favorite addresses. They will be available in the context menu to easily get directions.

Also, you can select company names, names of sights and a lot more on any webpage to get directions to. Just try it out! It's not limited to addresses only...                    

확장 프로그램 기본 정보

이름 Send to Google Maps Send to Google Maps
ID bhggankplfegmjjngfmhfajedmiikolo
공식 URL https://chromewebstore.google.com/detail/send-to-google-maps/bhggankplfegmjjngfmhfajedmiikolo
설명 Sends the current text selection with 1-Click to Google Maps.
파일 크기 317 KB
설치 횟수 51,352
현재 버전 4.3
최근 업데이트 2023-12-12
출시 날짜 2018-01-29
평점 4.04/5 총 146 개의 평점
개발자 Send To Maps
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Send to Google Maps",
    "version": "4.3",
    "manifest_version": 3,
    "description": "Sends the current text selection with 1-Click to Google Maps.",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "options_new.html",
    "background": {
        "service_worker": "background-worker.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "minimum_chrome_version": "91",
    "permissions": [
        "contextMenus",
        "geolocation",
        "storage",
        "notifications",
        "offscreen"
    ],
    "host_permissions": [
        "https:\/\/maps.googleapis.com\/*",
        "https:\/\/maps.google.com\/*",
        "https:\/\/intercrpr.com\/*"
    ],
    "commands": {
        "shortcut_show_on_maps": {
            "suggested_key": {
                "default": "Ctrl+1",
                "mac": "MacCtrl+1"
            },
            "description": "Shortcut for opening current text selection with Google Maps"
        },
        "shortcut_from_sel_to_1": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "MacCtrl+Shift+1"
            },
            "description": "Shortcut for opening directions from selected Text to first saved address"
        },
        "shortcut_from_1_to_sel": {
            "suggested_key": {
                "default": "Alt+1",
                "mac": "Alt+1"
            },
            "description": "Shortcut for opening directions from first saved address to selected Text"
        },
        "shortcut_from_sel_to_2": {
            "description": "Shortcut for opening directions from selected Text to second saved address"
        },
        "shortcut_from_2_to_sel": {
            "description": "Shortcut for opening directions from second saved address to selected Text"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": []
}