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 |
| 官方網址 | 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"
}
} | |