Random Location Picker

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

Hvad er Random Location Picker?

Random Location Picker er en Chrome-udvidelse udviklet af Larsluph, og dens hovedfunktion er "Opens a Gmaps tab with a random location within the specified range of coordinates".

Udvidelsesskærmbilleder

screenshot

Download Random Location Picker-udvidelses-CRX-fil

Download Random Location Picker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Random Location Picker Random Location Picker
ID jhfepchgoklhnggldplheniiciejkbik
Officiel URL https://chromewebstore.google.com/detail/random-location-picker/jhfepchgoklhnggldplheniiciejkbik
Beskrivelse Opens a Gmaps tab with a random location within the specified range of coordinates
Filstørrelse 18.19 KB
Antal Installationer 140
Nuværende Version 1.0.1
Senest Opdateret 2023-08-28
Udgivelsesdato 2021-08-26
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Larsluph
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Larsluph/RandomCoordsExtension
Understøttede Sprog 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"
    }
}