Map Marklet

Bookmarklet for Google Maps

Map Marklet란 무엇입니까?

Map Marklet은(는) isachenx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmarklet for Google Maps"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Map Marklet 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ever find yourself bookmarking hundreds of pages while planning for a holiday, only to realise you have no idea what location on a map these pages refer to? Map Marklet lets you bookmark links to a map. 

To focus the map:
The default is set to Iceland, to focus the map, type the place you want to visit into the autocomplete field and select from the drop down menu.

To add a marker:
Navigate to the page you want to bookmark. Open the popup and add a marker to the map either via the autocomplete field or directly clicking on the map.

To delete a marker:
Click on the marker in the popup to delete it.                    

확장 프로그램 기본 정보

이름 Map Marklet Map Marklet
ID ceehjgibajdnifanffaekamboianchbp
공식 URL https://chrome.google.com/webstore/detail/map-marklet/ceehjgibajdnifanffaekamboianchbp
설명 Bookmarklet for Google Maps
파일 크기 641 KB
설치 횟수 61
현재 버전 0.0.0.1
최근 업데이트 2017-12-05
출시 날짜 2017-12-05
평점 5.00/5 총 3 개의 평점
개발자 isachenx
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Map Marklet",
    "description": "Bookmarklet for Google Maps",
    "version": "0.0.0.1",
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        },
        "default_title": "Map Marklet",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/maps.googleapis.com https:\/\/connect.facebook.net\/en_US\/all.js; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        ".\/main.html"
    ],
    "permissions": [
        "tabs",
        "identity",
        "*:\/\/*.google.com\/*",
        "storage"
    ],
    "oauth2": {
        "client_id": "658325221633-v2aurmcset7hj6ajq803cv438k7cf5ti.apps.googleusercontent.com",
        "scopes": [
            "profile"
        ]
    }
}