Map Maker Address Helper

Create address markers in Map Maker with one click

什麼是Map Maker Address Helper?

Map Maker Address Helper是由HannesNZ Software開發的Chrome擴展程式,該擴展的主要功能是“Create address markers in Map Maker with one click”。

擴展截圖

screenshot

下載Map Maker Address Helper擴展crx文件

下載Map Maker Address Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension allows you to very easily add new address markers to Google Map Maker.

Instead of doing around 15 mouse clicks plus typing the street number for each address, now you only require 1 click!.

The extension automatically does all the work for you and will increment to the next street number ready for you click the next marker.

See the video for a demonstration.

One warning: This extension will save the new marker regardless of whether there is a marker for the address you are adding or not.  So please only use for new address markers that have not yet been added.

Release Notes:
Version 1.3
* Now allows collecting of address data so you don't have to type the street name and town/city fields.
* Hopefully fixes bug with map scrolling.

Version 1.2
* Better positioning of map after adding each address.
* Added Ukrainian translation.  Thanks Володимир Новіцький!

Version 1.0
* Initial Release                    

擴展基本資訊

名稱 Map Maker Address Helper Map Maker Address Helper
ID lnobjnlljkaeklhpaolijidkdjolipff
官方網址 https://chrome.google.com/webstore/detail/map-maker-address-helper/lnobjnlljkaeklhpaolijidkdjolipff
簡介 Create address markers in Map Maker with one click
檔案大小 134 KB
安裝次數 163
目前版本 1.3
更新時間 2016-05-08
上架時間 2016-05-08
評分 5.00/5 共 2 次評分
開發者 HannesNZ Software
付費類型 free
支援的語言 en,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.3",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/mapmaker*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "injected.js"
    ]
}