OAuth Flows
Troubleshoot Oauth and OIDC applications and decode JWT tokens
OAuth Flows란 무엇입니까?
OAuth Flows은(는) scripturesdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Troubleshoot Oauth and OIDC applications and decode JWT tokens"입니다.
확장 프로그램 스크린샷
OAuth Flows 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds a OAuth Flows tab in Google Chrome’s developer tools and monitors OIDC and OAuth traffic on the page you are inspecting. The extension will display all redirect traffic for context, and catches the actual JSON Web Tokens (JWT) transferred, such as the ID_Token and decodes it directly. It includes a few special features: * All output is JSON formatted and color coded. * Data persists through navigation. * Built in JWT token decoding. More features to come. Please do send in recommendations or feature requests.
확장 프로그램 기본 정보
이름 | OAuth Flows |
ID | dandckbjghfejnhmnhloigndkeabdbbo |
공식 URL | https://chromewebstore.google.com/detail/oauth-flows/dandckbjghfejnhmnhloigndkeabdbbo |
설명 | Troubleshoot Oauth and OIDC applications and decode JWT tokens |
파일 크기 | 42.71 KB |
설치 횟수 | 3,029 |
현재 버전 | 1.2 |
최근 업데이트 | 2019-01-28 |
출시 날짜 | 2019-01-23 |
평점 | 4.11/5 총 9 개의 평점 |
개발자 | scripturesdev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OAuth Flows", "version": "1.2", "minimum_chrome_version": "10.0", "description": "Troubleshoot Oauth and OIDC applications and decode JWT tokens", "devtools_page": "background.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "24": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |