Simple OAuth2 Client

A simple OAuth2 client chrome extension to get access token via authorization code flow for development usage

Simple OAuth2 Client란 무엇입니까?

Simple OAuth2 Client은(는) sat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple OAuth2 client chrome extension to get access token via authorization code flow for development usage"입니다.

확장 프로그램 스크린샷

screenshot

Simple OAuth2 Client 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        With this extension, you can get an access token without prepare an application or server to catch for OAuth2 redirection.

---------
Usage
---------
- Open developer tools
- Click the Simple OAuth2 Client tab
- Fill each config sections
- Copy "redirect_uri" from Client Config section and paste it to "Redirect URIs" in your OAuth2 app setting page
- Click "Start Auth" button

-----------------
How it works
-----------------

1. By clicking StartAuth button, the extension open authorization url with required params.
2. You will be asked to sign-in to that platform and to allow access to scopes you input. 
3. Then Chrome accesses "redirect_uri" but not really open.  By using launchWebAuthFlow API in Chrome your redirect securely catch by chrome themselves.
4. The extension get authorization code and exchange it to access token and show it to you!

---------------------------
Supported Features
---------------------------

- Specify any url for authorization and token endpoint
- Public and confidential client
- PKCE(S256 and plain) and non-PKCE request
- Authorization Header and Body Parameter for token request authorization                    

확장 프로그램 기본 정보

이름 Simple OAuth2 Client Simple OAuth2 Client
ID bmcbmjlmbpndabffoeejkfaknnknioej
공식 URL https://chromewebstore.google.com/detail/simple-oauth2-client/bmcbmjlmbpndabffoeejkfaknnknioej
설명 A simple OAuth2 client chrome extension to get access token via authorization code flow for development usage
파일 크기 63.87 KB
설치 횟수 163
현재 버전 0.1.4
최근 업데이트 2023-10-30
출시 날짜 2023-01-10
개발자 sat
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/satetsu888/simple-oauth2-client-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple OAuth2 Client",
    "description": "A simple OAuth2 client chrome extension to get access token via authorization code flow for development usage",
    "version": "0.1.4",
    "icons": {
        "16": ".\/packed_img\/icon16x16.png",
        "32": ".\/packed_img\/icon32x32.png",
        "128": ".\/packed_img\/icon128x128.png"
    },
    "permissions": [
        "identity",
        "clipboardWrite"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": ".\/dist\/background.js"
    },
    "devtools_page": "devtools.html",
    "manifest_version": 3
}