copy-jwt
Search jwt token in local storage and copy to clipboard
Что такое copy-jwt?
copy-jwt - это расширение Chrome, разработанное bianucci, и его основная функция - "Search jwt token in local storage and copy to clipboard".
Снимки экрана расширения
Скачать файл CRX расширения copy-jwt
Скачайте файлы расширений copy-jwt в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | mnmgmnigoeabimncikdolaekjmfeeghi |
| Официальный URL | https://chromewebstore.google.com/detail/copy-jwt/mnmgmnigoeabimncikdolaekjmfeeghi |
| Описание | Search jwt token in local storage and copy to clipboard |
| Размер файла | 17.63 KB |
| Количество установок | 49 |
| Текущая Версия | 0.4.1 |
| Последнее Обновление | 2023-03-18 |
| Дата публикации | 2022-08-07 |
| Разработчик | bianucci |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/bianucci/copy-jwt |
| URL страницы помощи | https://github.com/bianucci/copy-jwt/issues |
| Поддерживаемые языки | 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"
}
} | |