Random Location Picker
Opens a Gmaps tab with a random location within the specified range of coordinates
什么是Random Location Picker?
Random Location Picker是由Larsluph开发的Chrome扩展程序,该扩展的主要功能是“Opens a Gmaps tab with a random location within the specified range of coordinates”。
扩展截图
下载Random Location Picker扩展crx文件
下载Random Location Picker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Random Location Picker |
ID | jhfepchgoklhnggldplheniiciejkbik |
官方URL | https://chromewebstore.google.com/detail/random-location-picker/jhfepchgoklhnggldplheniiciejkbik |
简介 | Opens a Gmaps tab with a random location within the specified range of coordinates |
文件大小 | 18.19 KB |
安装次数 | 140 |
当前版本 | 1.0.1 |
更新时间 | 2023-08-28 |
上架时间 | 2021-08-26 |
评分 | 5.00/5 共1次评分 |
开发者 | Larsluph |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Larsluph/RandomCoordsExtension |
支持的语言 | 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" } } |