Map Overlays

Change satellite images in mapping websites.

Τι είναι το Map Overlays;

Το Map Overlays είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ciprian Coman, και η κύρια λειτουργία του είναι "Change satellite images in mapping websites.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Map Overlays

Λήψη αρχείων επέκτασης Map Overlays σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Provides an easy way to change the satellite images displayed in Google My Map and Waze Map Editor. There's several international maps available and some country specific (Romania, Poland, Check Republic).

Supported sites:
• waze.com/editor
• google.com/mymaps

There is a shortcut, default Alt+L, to switch between the default layer and selected layer. You can change the keybinding in the chrome settings chrome://extensions/shortcuts

Do not use layers for editing the maps unless you comply with the terms of use specific to each layer provider.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Map Overlays Map Overlays
ID ggbadcghmcpofonkoeepddbabdkfbbia
Επίσημο URL https://chromewebstore.google.com/detail/map-overlays/ggbadcghmcpofonkoeepddbabdkfbbia
Περιγραφή Change satellite images in mapping websites.
Μέγεθος Αρχείου 279 KB
Αριθμός Εγκαταστάσεων 3,041
Τρέχουσα Έκδοση 4.1.5
Τελευταία Ενημέρωση 2023-06-12
Ημερομηνία Δημοσίευσης 2020-01-02
Αξιολόγηση 4.56/5 Συνολικά 55 Αξιολογήσεις
Προγραμματιστής Ciprian Coman
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Map Overlays",
    "short_name": "Map Overlays",
    "version": "4.1.5",
    "manifest_version": 3,
    "description": "Change satellite images in mapping websites.",
    "icons": {
        "16": "images\/logo_16.png",
        "128": "images\/logo_128.png"
    },
    "action": {
        "default_title": "Overlays",
        "default_icon": {
            "19": "images\/logo_19.png",
            "38": "images\/logo_38.png"
        },
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "worker_main.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/maps\/d*",
                "*:\/\/*.waze.com\/*editor*"
            ],
            "js": [
                "libs\/jquery-3.6.1.min.js",
                "libs\/proj4.js",
                "libs\/ol.js",
                "scripts\/conversions.js",
                "scripts\/global.js",
                "scripts\/overlay.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "scripts\/page.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*.google.com\/maps\/d*",
        "*:\/\/*.waze.com\/*editor*",
        "https:\/\/*.tiles.virtualearth.net\/tiles*",
        "https:\/\/services.arcgisonline.com\/ArcGIS\/rest\/services*",
        "https:\/\/*.tile.openstreetmap.org\/*",
        "*:\/\/*.communitymaptiles.nokia.com\/tilehub*",
        "https:\/\/*.aerial.maps.ls.hereapi.com\/maptile*",
        "https:\/\/*.apple-mapkit.com\/*",
        "https:\/\/cache.map2web.eu\/toursprung\/wmts\/toursprung\/webmercator*",
        "https:\/\/geoportal.ancpi.ro\/*",
        "https:\/\/mapy.geoportal.gov.pl\/*",
        "https:\/\/mapserver.mapy.cz\/*",
        "*:\/\/maptiles4.finncdn.no\/tileService*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules_request_headers.json"
            }
        ]
    },
    "commands": {
        "toggle-last-layer": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Toggle last layer"
        },
        "opacity-0": {
            "suggested_key": {
                "default": "Alt+Comma"
            },
            "description": "Set opacity to 0"
        },
        "opacity-100": {
            "suggested_key": {
                "default": "Alt+Period"
            },
            "description": "Set opacity to 1"
        },
        "opacity-50": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Set opacity to 0.5"
        }
    }
}