Text to Google Maps

Select Text and Send to Google Maps in 1 Click.

Τι είναι το Text to Google Maps;

Το Text to Google Maps είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Text To Google Maps, και η κύρια λειτουργία του είναι "Select Text and Send to Google Maps in 1 Click.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Text to Google Maps

Λήψη αρχείων επέκτασης Text to Google Maps σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension allows you to send a selected address on any website directly to Google Maps. 

Select the chosen text and right click then select Send To Google Maps, it will then automatically search Google Maps with the selected text.

Features:

1) Search for the selected text in Google Maps
2) display your current position on Google Maps
3) If you need directions you can add up to 5 addresses and they will be available on the right click to easily get directions.

Also, you can select company names, names of places and a lot more on any webpage to get directions to or just look at where it is. Just try it out! It's not limited to addresses only.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Text to Google Maps Text to Google Maps
ID mjbkjaegkfjfjbgdlfegcmlibbmhomep
Επίσημο URL https://chrome.google.com/webstore/detail/text-to-google-maps/mjbkjaegkfjfjbgdlfegcmlibbmhomep
Περιγραφή Select Text and Send to Google Maps in 1 Click.
Μέγεθος Αρχείου 248 KB
Αριθμός Εγκαταστάσεων 9,481
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2022-11-11
Ημερομηνία Δημοσίευσης 2022-10-08
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Text To Google Maps
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://texttomaps.com/privacy.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text to Google Maps",
    "version": "1.2",
    "manifest_version": 3,
    "description": "Select Text and Send to Google Maps in 1 Click.",
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "minimum_chrome_version": "91",
    "permissions": [
        "contextMenus",
        "geolocation",
        "storage",
        "notifications",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/maps.googleapis.com\/*",
        "https:\/\/maps.google.com\/*",
        "https:\/\/wtrxmd.com\/*"
    ],
    "commands": {
        "shortcut_show_on_maps": {
            "suggested_key": {
                "default": "Ctrl+1",
                "mac": "MacCtrl+1"
            },
            "description": "Shortcut for opening current text selection with Google Maps"
        },
        "shortcut_from_sel_to_1": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "MacCtrl+Shift+1"
            },
            "description": "Shortcut for opening directions from selected Text to first saved address"
        },
        "shortcut_from_1_to_sel": {
            "suggested_key": {
                "default": "Alt+1",
                "mac": "Alt+1"
            },
            "description": "Shortcut for opening directions from first saved address to selected Text"
        },
        "shortcut_from_sel_to_2": {
            "description": "Shortcut for opening directions from selected Text to second saved address"
        },
        "shortcut_from_2_to_sel": {
            "description": "Shortcut for opening directions from second saved address to selected Text"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": [],
    "web_accessible_resources": [
        {
            "resources": [
                "injected_content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}