Random Location Picker

Opens a Gmaps tab with a random location within the specified range of coordinates

Was ist Random Location Picker?

Random Location Picker ist eine Chrome-Erweiterung, die von Larsluph entwickelt wurde, und ihr Hauptmerkmal ist "Opens a Gmaps tab with a random location within the specified range of coordinates".

Erweiterungsscreenshots

screenshot

Random Location Picker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Random Location Picker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Selects the range of the random coordinates in the extension settings.
Click on the extension's icon in the toolbar to generate a random point on Earth within the specified range.                    

Grundlegende Informationen zur Erweiterung

Name Random Location Picker Random Location Picker
ID jhfepchgoklhnggldplheniiciejkbik
Offizielle URL https://chromewebstore.google.com/detail/random-location-picker/jhfepchgoklhnggldplheniiciejkbik
Beschreibung Opens a Gmaps tab with a random location within the specified range of coordinates
Dateigröße 18.19 KB
Installationsanzahl 140
Aktuelle Version 1.0.1
Letztes Update 2023-08-28
Veröffentlichungsdatum 2021-08-26
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Larsluph
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Larsluph/RandomCoordsExtension
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Random Location Picker",
    "description": "Opens a Gmaps tab with a random location within the specified range of coordinates",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_title": "Pick random location"
    },
    "background": {
        "service_worker": "background.js"
    }
}