Podróżuj między Geoportal i Google Maps
Skrótem klawiszowym (Alt-Shift-D) otwiera lokalizację między Geoportal i Google Maps
Was ist Podróżuj między Geoportal i Google Maps?
Podróżuj między Geoportal i Google Maps ist eine Chrome-Erweiterung, die von ptomaszek entwickelt wurde, und ihr Hauptmerkmal ist "Skrótem klawiszowym (Alt-Shift-D) otwiera lokalizację między Geoportal i Google Maps".
Erweiterungsscreenshots
Podróżuj między Geoportal i Google Maps-Erweiterungs-CRX-Datei herunterladen
Laden Sie Podróżuj między Geoportal i Google Maps-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Skrótem klawiszowym (Alt-Shift-D) otwiera aktualną lokalizację z geoportal.gov.pl w Google Maps i na odwrót.
https://mapy.geoportal.gov.pl
https://www.google.pl/maps
Skrót można zmienić w chrome://extensions/shortcuts
Jeśli wtyczka nie działa, to na chwilę zmień skrót na inny i zapisz zmiany. Możesz teraz wrócić do dawnego.
Zgłaszanie błędów: https://github.com/ptomaszek/geoportalgovpl-to-googlemaps/issues Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bmalpmchldgpfnonnkephcfpblhipdhm |
| Offizielle URL | https://chromewebstore.google.com/detail/podr%C3%B3%C5%BCuj-mi%C4%99dzy-geoportal/bmalpmchldgpfnonnkephcfpblhipdhm |
| Beschreibung | Skrótem klawiszowym (Alt-Shift-D) otwiera lokalizację między Geoportal i Google Maps |
| Dateigröße | 26.34 KB |
| Installationsanzahl | 214 |
| Aktuelle Version | 2.2.0 |
| Letztes Update | 2023-10-08 |
| Veröffentlichungsdatum | 2020-12-01 |
| Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
| Entwickler | ptomaszek |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/ptomaszek/geoportalgovpl-to-googlemaps |
| Unterstützte Sprachen | pl |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Podr\u00f3\u017cuj mi\u0119dzy Geoportal i Google Maps",
"version": "2.2.0",
"description": "Skr\u00f3tem klawiszowym (Alt-Shift-D) otwiera lokalizacj\u0119 mi\u0119dzy Geoportal i Google Maps",
"homepage_url": "https:\/\/github.com\/ptomaszek\/geoportalgovpl-to-googlemaps",
"icons": {
"48": "icons\/icon_48.png",
"64": "icons\/icon_64.png",
"96": "icons\/icon_96.png",
"128": "icons\/icon_128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"include_globs": [
"https:\/\/mapy.geoportal.gov.pl\/*",
"https:\/\/*google.*\/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_icon": {
"48": "icons\/icon_48.png",
"64": "icons\/icon_64.png",
"96": "icons\/icon_96.png",
"128": "icons\/icon_128.png"
},
"default_title": "Przenie\u015b na drug\u0105 map\u0119"
},
"permissions": [
"activeTab"
],
"host_permissions": [
"https:\/\/mapy.geoportal.gov.pl\/*",
"https:\/\/google.com\/maps\/*",
"https:\/\/google.pl\/maps\/*"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+D"
}
}
}
} | |