copy-jwt
Search jwt token in local storage and copy to clipboard
O que é copy-jwt?
copy-jwt é uma extensão do Chrome desenvolvida por bianucci, e sua principal característica é "Search jwt token in local storage and copy to clipboard".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão copy-jwt
Baixe arquivos de extensão copy-jwt 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
Visit website which contains JWT token in local storage and click extension button (key icon). If a single token was found it is copied directly into the clipboard. If multiple tokens were found you can select which one you would like to copy. https://github.com/bianucci/copy-jwt
Informações Básicas da Extensão
Nome | copy-jwt |
ID | mnmgmnigoeabimncikdolaekjmfeeghi |
URL Oficial | https://chromewebstore.google.com/detail/copy-jwt/mnmgmnigoeabimncikdolaekjmfeeghi |
Descrição | Search jwt token in local storage and copy to clipboard |
Tamanho do Arquivo | 17.63 KB |
Contagem de Instalações | 49 |
Versão Atual | 0.4.1 |
Última Atualização | 2023-03-18 |
Data de Publicação | 2022-08-07 |
Desenvolvedor | bianucci |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/bianucci/copy-jwt |
URL da Página de Ajuda | https://github.com/bianucci/copy-jwt/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "copy-jwt", "description": "Search jwt token in local storage and copy to clipboard", "version": "0.4.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "scripting" ], "action": [], "icons": { "16": "\/images\/key-16.png", "32": "\/images\/key-32.png", "48": "\/images\/key-48.png", "128": "\/images\/key-128.png" } } |