GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
Qu'est-ce que GUID Injector ?
GUID Injector est une extension Chrome développée par https://sites.google.com/site/nyteshade, et sa fonction principale est "Creates a unique GUID/UUID and inserts it into a text field".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GUID Injector
Téléchargez les fichiers d'extension GUID Injector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GUID Injector |
ID | fbikgchaodmoekfibbffelacabfjomjb |
URL Officiel | https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb |
Description | Creates a unique GUID/UUID and inserts it into a text field |
Taille du Fichier | 21.05 KB |
Nombre d'Installations | 55 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2022-01-11 |
Date de Publication | 2013-02-13 |
Évaluation | 1.25/5 Total 4 Évaluations |
Développeur | https://sites.google.com/site/nyteshade |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |