Random Location Picker

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

Co to jest Random Location Picker?

Random Location Picker to rozszerzenie Chrome opracowane przez Larsluph, a jego główną funkcją jest „Opens a Gmaps tab with a random location within the specified range of coordinates”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Random Location Picker

Pobierz pliki rozszerzeń Random Location Picker 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Random Location Picker Random Location Picker
ID jhfepchgoklhnggldplheniiciejkbik
Oficjalny URL https://chromewebstore.google.com/detail/random-location-picker/jhfepchgoklhnggldplheniiciejkbik
Opis Opens a Gmaps tab with a random location within the specified range of coordinates
Rozmiar pliku 18.19 KB
Liczba instalacji 140
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2023-08-28
Data Publikacji 2021-08-26
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Larsluph
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Larsluph/RandomCoordsExtension
Obsługiwane Języki 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"
    }
}