MapIT
This extension helps in showing location on Google maps or search a phrase on Google search
MapIT란 무엇입니까?
MapIT은(는) RajashekarReddy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps in showing location on Google maps or search a phrase on Google search"입니다.
확장 프로그램 스크린샷
MapIT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } } |