Fullscreen Maps
Online maps without the clutter. Hide the UI for your favorite maps website and enjoy a fullscreen map experience.
Fullscreen Maps란 무엇입니까?
Fullscreen Maps은(는) antondekom에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Online maps without the clutter. Hide the UI for your favorite maps website and enjoy a fullscreen map experience."입니다.
확장 프로그램 스크린샷
Fullscreen Maps 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Fullscreen Maps is a Chrome extension that allows you to hide navigation controls, search bars, and all other buttons, panes, and panels for most major maps websites. Google Maps, Bing Maps, and OpenStreet Map are all supported. The extension is great for navigating rich 3D map content during presentations and meetings or for exploring aerial imagery with family and friends. Use this extension with Chrome's presentation mode (View > Enter Presentation Mode) to enjoy a true Fullscreen Maps experience. VERSION 1.3.6.0 Updated jquery dependency to improve security. VERSION 1.3.5.0 Ported Chrome version of the extension over to Firefox to allow for compatibility with Firefox 57. VERSION 1.3.4.0 Returned support for Google Maps Lite Mode. Removed support for Weather Underground's wundermap. VERSION 1.3.3.0 Added support for encrypted.google.com/maps. VERSION 1.3.2.0 Added support for newest version of Bing Maps. Removed support for the old Bing Maps due to the way that Microsoft chose to provide legacy access. VERSION 1.3.1.0 Added support for newest versions of Google Maps and Google MyMaps. Removed support for defunct Google Maps Classic and Google Maps Lite Mode. Removed support for defunct Yahoo Maps. VERSION 1.3.0.0 Added support for Yahoo Maps, and Weather Underground's WunderMap. VERSION 1.2.5.0 Added support for OpenStreet Map and Google Maps' new Lite Mode feature. Also made some minor adjustments and fixes. I am not an avid user of OpenStreet map, so please feel free to contact me with feature requests or bug reports. VERSION 1.2.4.0 Added support for Google My Maps. VERSION 1.2.3.0 Fixed issue with unsupported URLs used to access Google Maps Classic. VERSION 1.2.2.0 Added support for additional top level domains. Due to the way Chrome extensions are built, all supported TLDs must be manually listed out. I've tried my best to find all supported Google Maps TLDs, but if I've overlooked any, please let me know. VERSION 1.2.1.0 Fixed an issue with Google Maps where an interface element was being not hidden in street view. VERSION 1.2.0.0 Support for Bing Maps has been added! Also fixed an issue with using the extension in multiple tabs simultaneously. This is a new extension, so feedback, ratings, and feature requests are greatly appreciated.
확장 프로그램 기본 정보
이름 | Fullscreen Maps |
ID | cnliochjjnimhedpfeoeifbleldgdofe |
공식 URL | https://chromewebstore.google.com/detail/fullscreen-maps/cnliochjjnimhedpfeoeifbleldgdofe |
설명 | Online maps without the clutter. Hide the UI for your favorite maps website and enjoy a fullscreen map experience. |
파일 크기 | 69.39 KB |
설치 횟수 | 94 |
현재 버전 | 1.3.6.0 |
최근 업데이트 | 2018-03-03 |
출시 날짜 | 2018-03-03 |
평점 | 4.83/5 총 6 개의 평점 |
개발자 | antondekom |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fullscreen Maps", "version": "1.3.6.0", "description": "Online maps without the clutter. Hide the UI for your favorite maps website and enjoy a fullscreen map experience.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "page_action": { "default_title": "Toggle User Interface", "default_icon": { "19": "icons\/icon_gry_19.png", "38": "icons\/icon_gry_38.png" } }, "permissions": [ "tabs", "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/maps*", "*:\/\/www.google.com.ar\/maps*", "*:\/\/www.google.com.au\/maps*", "*:\/\/www.google.at\/maps*", "*:\/\/www.google.bs\/maps*", "*:\/\/www.google.be\/maps*", "*:\/\/www.google.com.br\/maps*", "*:\/\/www.google.ca\/maps*", "*:\/\/www.google.cl\/maps*", "*:\/\/www.google.cz\/maps*", "*:\/\/www.google.dk\/maps*", "*:\/\/www.google.ee\/maps*", "*:\/\/www.google.fi\/maps*", "*:\/\/www.google.fr\/maps*", "*:\/\/www.google.de\/maps*", "*:\/\/www.google.gr\/maps*", "*:\/\/www.google.com.hk\/maps*", "*:\/\/www.google.hu\/maps*", "*:\/\/www.google.co.in\/maps*", "*:\/\/www.google.com.ph\/maps*", "*:\/\/www.google.ie\/maps*", "*:\/\/www.google.co.il\/maps*", "*:\/\/www.google.it\/maps*", "*:\/\/www.google.co.jp\/maps*", "*:\/\/www.google.li\/maps*", "*:\/\/www.google.com.mx\/maps*", "*:\/\/www.google.nl\/maps*", "*:\/\/www.google.co.nz\/maps*", "*:\/\/www.google.no\/maps*", "*:\/\/www.google.pl\/maps*", "*:\/\/www.google.pt\/maps*", "*:\/\/www.google.ru\/maps*", "*:\/\/www.google.com.sg\/maps*", "*:\/\/www.google.co.za\/maps*", "*:\/\/www.google.co.kr\/maps*", "*:\/\/www.google.es\/maps*", "*:\/\/www.google.se\/maps*", "*:\/\/www.google.ch\/maps*", "*:\/\/www.google.com.tw\/maps*", "*:\/\/www.google.co.uk\/maps*", "https:\/\/encrypted.google.com\/maps*", "*:\/\/www.bing.com\/maps*", "*:\/\/www.openstreetmap.org\/*", "*:\/\/www.fullscreenmaps.co\/*" ], "js": [ "jquery.js" ] } ] } |