OAuth Flows

Troubleshoot Oauth and OIDC applications and decode JWT tokens

OAuth Flows क्या है?

OAuth Flows scripturesdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Troubleshoot Oauth and OIDC applications and decode JWT tokens"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OAuth Flows एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*"
    ]
}