OAuth Flows
Troubleshoot Oauth and OIDC applications and decode JWT tokens
OAuth Flows là gì?
OAuth Flows là một tiện ích mở rộng Chrome được phát triển bởi scripturesdev, và tính năng chính của nó là "Troubleshoot Oauth and OIDC applications and decode JWT tokens".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng OAuth Flows
Tải xuống các tệp mở rộng OAuth Flows dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | OAuth Flows |
ID | dandckbjghfejnhmnhloigndkeabdbbo |
URL Chính Thức | https://chromewebstore.google.com/detail/oauth-flows/dandckbjghfejnhmnhloigndkeabdbbo |
Mô tả | Troubleshoot Oauth and OIDC applications and decode JWT tokens |
Kích Thước Tệp | 42.71 KB |
Số Lần Cài Đặt | 3,029 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2019-01-28 |
Ngày Phát Hành | 2019-01-23 |
Đánh Giá | 4.11/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | scripturesdev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } |