MapIT

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

MapIT là gì?

MapIT là một tiện ích mở rộng Chrome được phát triển bởi RajashekarReddy, và tính năng chính của nó là "This extension helps in showing location on Google maps or search a phrase on Google search".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MapIT

Tải xuống các tệp mở rộng MapIT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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. :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MapIT MapIT
ID bbbjacpmbcbehmdekokoiohmfjphmhme
URL Chính Thức https://chromewebstore.google.com/detail/mapit/bbbjacpmbcbehmdekokoiohmfjphmhme
Mô tả This extension helps in showing location on Google maps or search a phrase on Google search
Kích Thước Tệp 25.29 KB
Số Lần Cài Đặt 146
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2016-02-02
Ngày Phát Hành 2016-02-02
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển RajashekarReddy
Loại Thanh Toán free
Trang Web Mở Rộng https://plus.google.com/+rajashekarreddy007
Ngôn Ngữ Được Hỗ Trợ 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
    }
}