OAuth Flows

Troubleshoot Oauth and OIDC applications and decode JWT tokens

OAuth Flowsคืออะไร?

OAuth Flows เป็นส่วนขยายของ Chrome ที่พัฒนาโดย scripturesdev และคุณลักษณะหลักของมันคือ "Troubleshoot Oauth and OIDC applications and decode JWT tokens"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OAuth Flows

ดาวน์โหลดไฟล์ส่วนขยาย OAuth Flows ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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:\/\/*\/*"
    ]
}