Google maps copy-paste location
Google maps copy-paste location
O que é Google maps copy-paste location?
Google maps copy-paste location é uma extensão do Chrome desenvolvida por [email protected], e sua principal característica é "Google maps copy-paste location".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google maps copy-paste location
Baixe arquivos de extensão Google maps copy-paste location no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Google maps copy-paste location |
ID | kpjmimpeabekgghehodddkpkcdhclofg |
URL Oficial | https://chromewebstore.google.com/detail/google-maps-copy-paste-lo/kpjmimpeabekgghehodddkpkcdhclofg |
Descrição | Google maps copy-paste location |
Tamanho do Arquivo | 9.3 KB |
Contagem de Instalações | 39 |
Versão Atual | 1.3.3 |
Última Atualização | 2022-11-17 |
Data de Publicação | 2021-11-28 |
Desenvolvedor | [email protected] |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |