MapSwitcher

Adds buttons to various map services for opening the same location in different map services.

什么是MapSwitcher?

MapSwitcher是由František Nesveda开发的Chrome扩展程序,该扩展的主要功能是“Adds buttons to various map services for opening the same location in different map services.”。

扩展截图

screenshot
screenshot

下载MapSwitcher扩展crx文件

下载MapSwitcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        MapSwitcher is a small extension which adds buttons to various map services for opening the displayed location in a different service.

Currently supported is switching between Google Maps, Mapy.cz and Geoportal.gov.cz.

Homepage:
https://www.nesveda.com/projects/MapSwitcher/

Source code:
https://www.github.com/fnesveda/MapSwitcher/                    

扩展基本信息

名称 MapSwitcher MapSwitcher
ID eogccmggebhlkjdjhlgddmnkffjfjamo
官方URL https://chromewebstore.google.com/detail/mapswitcher/eogccmggebhlkjdjhlgddmnkffjfjamo
简介 Adds buttons to various map services for opening the same location in different map services.
文件大小 69.74 KB
安装次数 59
当前版本 1.0.1
更新时间 2019-11-08
上架时间 2019-11-08
评分 4.67/5 共3次评分
开发者 František Nesveda
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.nesveda.com/projects/MapSwitcher/
支持的语言 en,cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "version": "1.0.1",
    "applications": {
        "gecko": {
            "id": "{0516BC41-6FA3-4326-87FE-7EA9101412FE}"
        }
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png",
        "480": "icons\/icon-full.png"
    },
    "default_icon": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png",
        "480": "icons\/icon-full.png"
    },
    "permissions": [
        "https:\/\/geoportal.gov.cz\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/maps*",
                "*:\/\/*.google.cz\/maps*"
            ],
            "js": [
                "scripts\/js\/main.js",
                "scripts\/js\/options.js",
                "scripts\/js\/urls\/googlemaps.js",
                "scripts\/js\/urls\/mapycz.js",
                "scripts\/js\/buttons\/googlemaps.js"
            ],
            "css": [
                "styles\/common.css",
                "styles\/googlemaps.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.mapy.cz\/*"
            ],
            "js": [
                "scripts\/js\/main.js",
                "scripts\/js\/options.js",
                "scripts\/js\/urls\/googlemaps.js",
                "scripts\/js\/urls\/mapycz.js",
                "scripts\/js\/buttons\/mapycz.js"
            ],
            "css": [
                "styles\/common.css",
                "styles\/mapycz.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/js\/background\/background.js",
            "scripts\/js\/options.js",
            "scripts\/js\/urls\/geoportal.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    }
}