Google maps copy-paste location
Google maps copy-paste location
Hvad er Google maps copy-paste location?
Google maps copy-paste location er en Chrome-udvidelse udviklet af [email protected], og dens hovedfunktion er "Google maps copy-paste location".
Udvidelsesskærmbilleder
Download Google maps copy-paste location-udvidelses-CRX-fil
Download Google maps copy-paste location-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | kpjmimpeabekgghehodddkpkcdhclofg |
| Officiel URL | https://chromewebstore.google.com/detail/google-maps-copy-paste-lo/kpjmimpeabekgghehodddkpkcdhclofg |
| Beskrivelse | Google maps copy-paste location |
| Filstørrelse | 9.3 KB |
| Antal Installationer | 39 |
| Nuværende Version | 1.3.3 |
| Senest Opdateret | 2022-11-17 |
| Udgivelsesdato | 2021-11-28 |
| Udvikler | [email protected] |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |