Google maps copy-paste location
Google maps copy-paste location
What is Google maps copy-paste location?
Google maps copy-paste location is a Chrome extension developed by [email protected], and its main feature is "Google maps copy-paste location".
Extension Screenshots
Download Google maps copy-paste location Extension CRX File
Download Google maps copy-paste location extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Google maps copy-paste location |
ID | kpjmimpeabekgghehodddkpkcdhclofg |
Official URL | https://chromewebstore.google.com/detail/google-maps-copy-paste-lo/kpjmimpeabekgghehodddkpkcdhclofg |
Description | Google maps copy-paste location |
File Size | 9.3 KB |
Installation Count | 39 |
Current Version | 1.3.3 |
Last Updated | 2022-11-17 |
Publish Date | 2021-11-28 |
Developer | [email protected] |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |