Random Location Picker

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

Random Location Picker là gì?

Random Location Picker là một tiện ích mở rộng Chrome được phát triển bởi Larsluph, và tính năng chính của nó là "Opens a Gmaps tab with a random location within the specified range of coordinates".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Random Location Picker

Tải xuống các tệp mở rộng Random Location Picker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Random Location Picker Random Location Picker
ID jhfepchgoklhnggldplheniiciejkbik
URL Chính Thức https://chromewebstore.google.com/detail/random-location-picker/jhfepchgoklhnggldplheniiciejkbik
Mô tả Opens a Gmaps tab with a random location within the specified range of coordinates
Kích Thước Tệp 18.19 KB
Số Lần Cài Đặt 140
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-08-28
Ngày Phát Hành 2021-08-26
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Larsluph
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Larsluph/RandomCoordsExtension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}