GUID Injector

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

GUID Injectorคืออะไร?

GUID Injector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sites.google.com/site/nyteshade และคุณลักษณะหลักของมันคือ "Creates a unique GUID/UUID and inserts it into a text field"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GUID Injector

ดาวน์โหลดไฟล์ส่วนขยาย GUID Injector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GUID Injector GUID Injector
ID fbikgchaodmoekfibbffelacabfjomjb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb
คำอธิบาย Creates a unique GUID/UUID and inserts it into a text field
ขนาดไฟล์ 21.05 KB
จำนวนการติดตั้ง 55
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2022-01-11
วันที่เผยแพร่ 2013-02-13
คะแนน 1.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://sites.google.com/site/nyteshade
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
}