Google maps copy-paste location
Google maps copy-paste location
Was ist Google maps copy-paste location?
Google maps copy-paste location ist eine Chrome-Erweiterung, die von [email protected] entwickelt wurde, und ihr Hauptmerkmal ist "Google maps copy-paste location".
Erweiterungsscreenshots
Google maps copy-paste location-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google maps copy-paste location-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
This extension allows you to speed up copy-pasting locations such as "los angeles, ca" from your emails, chats and few other places to google maps by setting up hotkeys for it. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kpjmimpeabekgghehodddkpkcdhclofg |
| Offizielle URL | https://chromewebstore.google.com/detail/google-maps-copy-paste-lo/kpjmimpeabekgghehodddkpkcdhclofg |
| Beschreibung | Google maps copy-paste location |
| Dateigröße | 9.3 KB |
| Installationsanzahl | 39 |
| Aktuelle Version | 1.3.3 |
| Letztes Update | 2022-11-17 |
| Veröffentlichungsdatum | 2021-11-28 |
| Entwickler | [email protected] |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Google maps copy-paste location",
"description": "Google maps copy-paste location",
"version": "1.3.3",
"background": {
"page": "background.html",
"persistent": false
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/*\/*",
"https:\/\/mail.google.com\/*",
"https:\/\/*.sylectus.com\/*",
"https:\/\/power.dat.com\/*",
"https:\/\/www.google.com\/maps\/*",
"https:\/\/chat.google.com\/*"
],
"all_frames": true,
"run_at": "document_end"
}
],
"permissions": [
"storage",
"tabs"
],
"browser_action": {
"default_title": "Hugo extension",
"default_popup": "popup.html"
}
} | |