Google maps copy-paste location
Google maps copy-paste location
什么是Google maps copy-paste location?
Google maps copy-paste location是由[email protected]开发的Chrome扩展程序,该扩展的主要功能是“Google maps copy-paste location”。
扩展截图
下载Google maps copy-paste location扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
}
} | |