MapIT

This extension helps in showing location on Google maps or search a phrase on Google search

MapIT क्या है?

MapIT RajashekarReddy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension helps in showing location on Google maps or search a phrase on Google search"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        When you are browsing web pages, you may come across locations or phrases to be searched and would like to see it on maps where it is visually located or google search . For that traditionally what you would be doing is first select the location or phrase to be searched you want to look up on google maps or google search, then copy the text with CTRL+C and then open a new tab to type maps.google.com. After you are loaded with maps.google.com you go to the search box and paste the clipboard contents to get the desired location. Then you get your location showed up on google maps.  The same is with the google search. This extension can basically save few mouse clicks and keyboard types with all at a click of the extension icon or a popup icon on selection. 

Update: Now you don't have to reach out for the extensions icon, it just popups up as soon as you select text. :)                    

एक्सटेंशन की मूल जानकारी

नाम MapIT MapIT
ID bbbjacpmbcbehmdekokoiohmfjphmhme
आधिकारिक URL https://chromewebstore.google.com/detail/mapit/bbbjacpmbcbehmdekokoiohmfjphmhme
विवरण This extension helps in showing location on Google maps or search a phrase on Google search
फ़ाइल का आकार 25.29 KB
स्थापना संख्या 146
वर्तमान संस्करण 2.2
अंतिम अपडेट 2016-02-02
प्रकाशन तिथि 2016-02-02
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर RajashekarReddy
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://plus.google.com/+rajashekarreddy007
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MapIT",
    "description": "This extension helps in showing location on Google maps or search a phrase on Google search",
    "version": "2.2",
    "short_name": "Mapit",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "128.png",
        "32": "32.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Select location or search phrase & click appropriate popup icon"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styleicon.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}