GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
O que é GUID Injector?
GUID Injector é uma extensão do Chrome desenvolvida por https://sites.google.com/site/nyteshade, e sua principal característica é "Creates a unique GUID/UUID and inserts it into a text field".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GUID Injector
Baixe arquivos de extensão GUID Injector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | GUID Injector |
ID | fbikgchaodmoekfibbffelacabfjomjb |
URL Oficial | https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb |
Descrição | Creates a unique GUID/UUID and inserts it into a text field |
Tamanho do Arquivo | 21.05 KB |
Contagem de Instalações | 55 |
Versão Atual | 2.0 |
Última Atualização | 2022-01-11 |
Data de Publicação | 2013-02-13 |
Classificação | 1.25/5 Total de 4 Avaliações |
Desenvolvedor | https://sites.google.com/site/nyteshade |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |