GUID Injector

Creates a unique GUID/UUID and inserts it into a text field

GUID Injector là gì?

GUID Injector là một tiện ích mở rộng Chrome được phát triển bởi https://sites.google.com/site/nyteshade, và tính năng chính của nó là "Creates a unique GUID/UUID and inserts it into a text field".

Ả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 GUID Injector

Tải xuống các tệp mở rộng GUID Injector 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

                        This chrome extension will add an item to your right click / context menu when right clicking on a text input field of a web page. Choosing "Generate GUID / UUID" will then generate a unique id and  *replace* the contents of the field with the new id.                    

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

Tên GUID Injector GUID Injector
ID fbikgchaodmoekfibbffelacabfjomjb
URL Chính Thức https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb
Mô tả Creates a unique GUID/UUID and inserts it into a text field
Kích Thước Tệp 21.05 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2022-01-11
Ngày Phát Hành 2013-02-13
Đánh Giá 1.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://sites.google.com/site/nyteshade
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GUID Injector",
    "description": "Creates a unique GUID\/UUID and inserts it into a text field",
    "version": "2.0",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "guid_uuid.js"
    },
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tellmewhen.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "uuid.png",
        "48": "uuid_48.png",
        "16": "uuid_16.png"
    },
    "offline_enabled": true
}