Random Location Picker
Opens a Gmaps tab with a random location within the specified range of coordinates
O que é Random Location Picker?
Random Location Picker é uma extensão do Chrome desenvolvida por Larsluph, e sua principal característica é "Opens a Gmaps tab with a random location within the specified range of coordinates".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Random Location Picker
Baixe arquivos de extensão Random Location Picker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Random Location Picker |
ID | jhfepchgoklhnggldplheniiciejkbik |
URL Oficial | https://chromewebstore.google.com/detail/random-location-picker/jhfepchgoklhnggldplheniiciejkbik |
Descrição | Opens a Gmaps tab with a random location within the specified range of coordinates |
Tamanho do Arquivo | 18.19 KB |
Contagem de Instalações | 140 |
Versão Atual | 1.0.1 |
Última Atualização | 2023-08-28 |
Data de Publicação | 2021-08-26 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Larsluph |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Larsluph/RandomCoordsExtension |
Idiomas Suportados | 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" } } |