Google maps copy-paste location
Google maps copy-paste location
Что такое Google maps copy-paste location?
Google maps copy-paste location - это расширение Chrome, разработанное [email protected], и его основная функция - "Google maps copy-paste location".
Снимки экрана расширения
Скачать файл CRX расширения Google maps copy-paste location
Скачайте файлы расширений Google maps copy-paste location в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Google maps copy-paste location |
ID | kpjmimpeabekgghehodddkpkcdhclofg |
Официальный URL | https://chromewebstore.google.com/detail/google-maps-copy-paste-lo/kpjmimpeabekgghehodddkpkcdhclofg |
Описание | Google maps copy-paste location |
Размер файла | 9.3 KB |
Количество установок | 39 |
Текущая Версия | 1.3.3 |
Последнее Обновление | 2022-11-17 |
Дата публикации | 2021-11-28 |
Разработчик | [email protected] |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |