AutoJWT

Browser developer extension to automatically find, parse, and copy JWT authorization tokens

AutoJWT란 무엇입니까?

AutoJWT은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser developer extension to automatically find, parse, and copy JWT authorization tokens"입니다.

확장 프로그램 스크린샷

screenshot

AutoJWT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        AutoJWT is a tool that aids in the development of websites and APIs that use JSON Web Tokens in their Authorization request headers. It installs as a new tab in Developer Tools. When open, it automatically searches for network requests that contain a JWT authorization header and lists unique examples. These examples can then be selected to:

View the JSON Web Token payload.
See a list of all requests that used the same token.
Open the JWT in a new tab on https://jwt.io.
Copy the JWT to the clipboard.
Copy the Payload to the clipboard.
View request and response contents.                    

확장 프로그램 기본 정보

이름 AutoJWT AutoJWT
ID oipoapdoibncigbdbdiphiophmjbdfef
공식 URL https://chromewebstore.google.com/detail/autojwt/oipoapdoibncigbdbdiphiophmjbdfef
설명 Browser developer extension to automatically find, parse, and copy JWT authorization tokens
파일 크기 619 KB
설치 횟수 87
현재 버전 0.5.2
최근 업데이트 2021-12-16
출시 날짜 2021-12-15
개발자 Unknown
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Jaaromy/autojwt
도움말 페이지 URL https://github.com/Jaaromy/autojwt/issues
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutoJWT",
    "description": "Browser developer extension to automatically find, parse, and copy JWT authorization tokens",
    "version": "0.5.2",
    "manifest_version": 2,
    "permissions": [
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "devtools_page": "devtools.html",
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    }
}