GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
Cos'è GUID Injector?
GUID Injector è un'estensione di Chrome sviluppata da https://sites.google.com/site/nyteshade, e la sua funzione principale è "Creates a unique GUID/UUID and inserts it into a text field".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GUID Injector
Scarica i file di estensione GUID Injector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GUID Injector |
ID | fbikgchaodmoekfibbffelacabfjomjb |
URL Ufficiale | https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb |
Descrizione | Creates a unique GUID/UUID and inserts it into a text field |
Dimensione del File | 21.05 KB |
Conteggio Installazioni | 55 |
Versione Corrente | 2.0 |
Ultimo Aggiornamento | 2022-01-11 |
Data di Pubblicazione | 2013-02-13 |
Valutazione | 1.25/5 Totale 4 Valutazioni |
Sviluppatore | https://sites.google.com/site/nyteshade |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |