Google maps copy-paste location

Google maps copy-paste location

Google maps copy-paste location là gì?

Google maps copy-paste location là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "Google maps copy-paste location".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google maps copy-paste location

Tải xuống các tệp mở rộng Google maps copy-paste location dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google maps copy-paste location Google maps copy-paste location
ID kpjmimpeabekgghehodddkpkcdhclofg
URL Chính Thức https://chromewebstore.google.com/detail/google-maps-copy-paste-lo/kpjmimpeabekgghehodddkpkcdhclofg
Mô tả Google maps copy-paste location
Kích Thước Tệp 9.3 KB
Số Lần Cài Đặt 39
Phiên Bản Hiện Tại 1.3.3
Cập Nhật Lần Cuối 2022-11-17
Ngày Phát Hành 2021-11-28
Nhà Phát Triển [email protected]
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}