copy-jwt
Search jwt token in local storage and copy to clipboard
Cos'è copy-jwt?
copy-jwt è un'estensione di Chrome sviluppata da bianucci, e la sua funzione principale è "Search jwt token in local storage and copy to clipboard".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione copy-jwt
Scarica i file di estensione copy-jwt in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | copy-jwt |
ID | mnmgmnigoeabimncikdolaekjmfeeghi |
URL Ufficiale | https://chromewebstore.google.com/detail/copy-jwt/mnmgmnigoeabimncikdolaekjmfeeghi |
Descrizione | Search jwt token in local storage and copy to clipboard |
Dimensione del File | 17.63 KB |
Conteggio Installazioni | 49 |
Versione Corrente | 0.4.1 |
Ultimo Aggiornamento | 2023-03-18 |
Data di Pubblicazione | 2022-08-07 |
Sviluppatore | bianucci |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/bianucci/copy-jwt |
URL della Pagina di Aiuto | https://github.com/bianucci/copy-jwt/issues |
Lingue Supportate | 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" } } |