Map Maker Address Helper

Create address markers in Map Maker with one click

Map Maker Address Helper क्या है?

Map Maker Address Helper HannesNZ Software द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create address markers in Map Maker with one click"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Map Maker Address Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}