Fullscreen Maps

Online maps without the clutter. Hide the UI for your favorite maps website and enjoy a fullscreen map experience.

¿Qué es Fullscreen Maps?

Fullscreen Maps es una extensión de Chrome desarrollada por antondekom, y su función principal es "Online maps without the clutter. Hide the UI for your favorite maps website and enjoy a fullscreen map experience.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Fullscreen Maps

Descarga archivos de extensión Fullscreen Maps en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Fullscreen Maps Fullscreen Maps
ID cnliochjjnimhedpfeoeifbleldgdofe
URL Oficial https://chromewebstore.google.com/detail/fullscreen-maps/cnliochjjnimhedpfeoeifbleldgdofe
Descripción Online maps without the clutter. Hide the UI for your favorite maps website and enjoy a fullscreen map experience.
Tamaño del Archivo 69.39 KB
Cantidad de Instalaciones 94
Versión Actual 1.3.6.0
Última Actualización 2018-03-03
Fecha de Publicación 2018-03-03
Calificación 4.83/5 Total de 6 Calificaciones
Desarrollador antondekom
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}