GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
What is GUID Injector?
GUID Injector is a Chrome extension developed by https://sites.google.com/site/nyteshade, and its main feature is "Creates a unique GUID/UUID and inserts it into a text field".
Extension Screenshots
Download GUID Injector Extension CRX File
Download GUID Injector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | GUID Injector |
ID | fbikgchaodmoekfibbffelacabfjomjb |
Official URL | https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb |
Description | Creates a unique GUID/UUID and inserts it into a text field |
File Size | 21.05 KB |
Installation Count | 55 |
Current Version | 2.0 |
Last Updated | 2022-01-11 |
Publish Date | 2013-02-13 |
Rating | 1.25/5 Total 4 Ratings |
Developer | https://sites.google.com/site/nyteshade |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |