Simple OAuth2 Client

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

Simple OAuth2 Client là gì?

Simple OAuth2 Client là một tiện ích mở rộng Chrome được phát triển bởi sat, và tính năng chính của nó là "A simple OAuth2 client chrome extension to get access token via authorization code flow for development usage".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simple OAuth2 Client

Tải xuống các tệp mở rộng Simple OAuth2 Client 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

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Simple OAuth2 Client Simple OAuth2 Client
ID bmcbmjlmbpndabffoeejkfaknnknioej
URL Chính Thức https://chromewebstore.google.com/detail/simple-oauth2-client/bmcbmjlmbpndabffoeejkfaknnknioej
Mô tả A simple OAuth2 client chrome extension to get access token via authorization code flow for development usage
Kích Thước Tệp 63.87 KB
Số Lần Cài Đặt 163
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2023-10-30
Ngày Phát Hành 2023-01-10
Nhà Phát Triển sat
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/satetsu888/simple-oauth2-client-extension
Ngôn Ngữ Được Hỗ Trợ 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
}