GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
Co je GUID Injector?
GUID Injector je rozšíření Chrome vyvinuté https://sites.google.com/site/nyteshade, a jeho hlavní funkcí je „Creates a unique GUID/UUID and inserts it into a text field“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GUID Injector
Stáhněte si soubory rozšíření GUID Injector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | GUID Injector |
ID | fbikgchaodmoekfibbffelacabfjomjb |
Oficiální URL | https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb |
Popis | Creates a unique GUID/UUID and inserts it into a text field |
Velikost souboru | 21.05 KB |
Počet instalací | 55 |
Aktuální Verze | 2.0 |
Poslední Aktualizace | 2022-01-11 |
Datum Vydání | 2013-02-13 |
Hodnocení | 1.25/5 Celkem 4 Hodnocení |
Vývojář | https://sites.google.com/site/nyteshade |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |