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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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