copy-jwt
Search jwt token in local storage and copy to clipboard
Hvad er copy-jwt?
copy-jwt er en Chrome-udvidelse udviklet af bianucci, og dens hovedfunktion er "Search jwt token in local storage and copy to clipboard".
Udvidelsesskærmbilleder
Download copy-jwt-udvidelses-CRX-fil
Download copy-jwt-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | copy-jwt |
ID | mnmgmnigoeabimncikdolaekjmfeeghi |
Officiel URL | https://chromewebstore.google.com/detail/copy-jwt/mnmgmnigoeabimncikdolaekjmfeeghi |
Beskrivelse | Search jwt token in local storage and copy to clipboard |
Filstørrelse | 17.63 KB |
Antal Installationer | 49 |
Nuværende Version | 0.4.1 |
Senest Opdateret | 2023-03-18 |
Udgivelsesdato | 2022-08-07 |
Udvikler | bianucci |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/bianucci/copy-jwt |
Hjælpeside-URL | https://github.com/bianucci/copy-jwt/issues |
Understøttede Sprog | 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" } } |