Google maps copy-paste location

Google maps copy-paste location

Co to jest Google maps copy-paste location?

Google maps copy-paste location to rozszerzenie Chrome opracowane przez [email protected], a jego główną funkcją jest „Google maps copy-paste location”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Google maps copy-paste location

Pobierz pliki rozszerzeń Google maps copy-paste location w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google maps copy-paste location Google maps copy-paste location
ID kpjmimpeabekgghehodddkpkcdhclofg
Oficjalny URL https://chromewebstore.google.com/detail/google-maps-copy-paste-lo/kpjmimpeabekgghehodddkpkcdhclofg
Opis Google maps copy-paste location
Rozmiar pliku 9.3 KB
Liczba instalacji 39
Aktualna Wersja 1.3.3
Ostatnia Aktualizacja 2022-11-17
Data Publikacji 2021-11-28
Deweloper [email protected]
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}