Maps Hub

Quick maps and navigation access right on your new tab page.

Maps Hub란 무엇입니까?

Maps Hub은(는) https://newtabtools.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quick maps and navigation access right on your new tab page."입니다.

확장 프로그램 스크린샷

screenshot

Maps Hub 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension sets your new tab page to Maps Hub to activate these features:

- Get directions from your location to a preferred destination quickly.
- Quick links for easy access to commonly used maps and navigation apps.

Click “Add to Chrome” to install Maps Hub for free.

Adding this extension to Chrome sets your new tab page to Maps Hub.                    

확장 프로그램 기본 정보

이름 Maps Hub Maps Hub
ID pbgbkaiaeaoehbphelhidlkjjfefcfdf
공식 URL https://chromewebstore.google.com/detail/maps-hub/pbgbkaiaeaoehbphelhidlkjjfefcfdf
설명 Quick maps and navigation access right on your new tab page.
파일 크기 1.07 MB
설치 횟수 3,293
현재 버전 2.0.8
최근 업데이트 2022-12-04
출시 날짜 2019-08-14
평점 3.83/5 총 6 개의 평점
개발자 https://newtabtools.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://newtabtools.com
도움말 페이지 URL http://www.newtabtools.com/contact-us
개인정보 보호 정책 페이지 URL http://www.newtabtools.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Maps Hub",
    "version": "2.0.8",
    "manifest_version": 3,
    "description": "Quick maps and navigation access right on your new tab page.",
    "homepage_url": "https:\/\/www.newtabtools.com\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon48.png"
    },
    "background": {
        "service_worker": "js\/bg\/mh_background.js"
    },
    "permissions": [
        "alarms",
        "tabs",
        "storage",
        "topSites",
        "history"
    ],
    "host_permissions": [
        "*:\/\/*.newtabtools.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.newtabtools.com\/*",
                "https:\/\/*.newtabtools.com\/*"
            ],
            "js": [
                "js\/bg\/mh_ext.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/mh_events.js"
            ]
        }
    ],
    "chrome_url_overrides": {
        "newtab": "mh_new_tab.html"
    }
}