Podróżuj między Geoportal i Google Maps
Skrótem klawiszowym (Alt-Shift-D) otwiera lokalizację między Geoportal i Google Maps
Wat is Podróżuj między Geoportal i Google Maps?
Podróżuj między Geoportal i Google Maps is een Chrome-extensie ontwikkeld door ptomaszek, en de belangrijkste functie is "Skrótem klawiszowym (Alt-Shift-D) otwiera lokalizację między Geoportal i Google Maps".
Extensie Screenshots
Download het CRX-bestand van de extensie Podróżuj między Geoportal i Google Maps
Download Podróżuj między Geoportal i Google Maps-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | bmalpmchldgpfnonnkephcfpblhipdhm |
| Officiële URL | https://chromewebstore.google.com/detail/podr%C3%B3%C5%BCuj-mi%C4%99dzy-geoportal/bmalpmchldgpfnonnkephcfpblhipdhm |
| Beschrijving | Skrótem klawiszowym (Alt-Shift-D) otwiera lokalizację między Geoportal i Google Maps |
| Bestandsgrootte | 26.34 KB |
| Aantal Installaties | 214 |
| Huidige Versie | 2.2.0 |
| Laatst Bijgewerkt | 2023-10-08 |
| Publicatiedatum | 2020-12-01 |
| Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | ptomaszek |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/ptomaszek/geoportalgovpl-to-googlemaps |
| Ondersteunde Talen | 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"
}
}
}
} | |