GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
Apa itu GUID Injector?
GUID Injector adalah ekstensi Chrome yang dikembangkan oleh https://sites.google.com/site/nyteshade, dan fitur utamanya adalah "Creates a unique GUID/UUID and inserts it into a text field".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi GUID Injector
Unduh file ekstensi GUID Injector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | GUID Injector |
ID | fbikgchaodmoekfibbffelacabfjomjb |
URL Resmi | https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb |
Deskripsi | Creates a unique GUID/UUID and inserts it into a text field |
Ukuran File | 21.05 KB |
Jumlah Instalasi | 55 |
Versi Saat Ini | 2.0 |
Terakhir Diperbarui | 2022-01-11 |
Tanggal Publikasi | 2013-02-13 |
Penilaian | 1.25/5 Total 4 Penilaian |
Pengembang | https://sites.google.com/site/nyteshade |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |