Google maps copy-paste location
Google maps copy-paste location
Vad är Google maps copy-paste location?
Google maps copy-paste location är en Chrome-tillägg utvecklad av [email protected], och dess huvudfunktion är "Google maps copy-paste location".
Tilläggsskärmbilder
Ladda ner Google maps copy-paste location-förlängningens CRX-fil
Ladda ner Google maps copy-paste location-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Google maps copy-paste location |
ID | kpjmimpeabekgghehodddkpkcdhclofg |
Officiell webbadress | https://chromewebstore.google.com/detail/google-maps-copy-paste-lo/kpjmimpeabekgghehodddkpkcdhclofg |
Beskrivning | Google maps copy-paste location |
Filstorlek | 9.3 KB |
Antal Installationer | 39 |
Aktuell Version | 1.3.3 |
Senast Uppdaterad | 2022-11-17 |
Publiceringsdatum | 2021-11-28 |
Utvecklare | [email protected] |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |