AutoJWT

Browser developer extension to automatically find, parse, and copy JWT authorization tokens

AutoJWT là gì?

AutoJWT là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Browser developer extension to automatically find, parse, and copy JWT authorization tokens".

Ả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 AutoJWT

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

                        AutoJWT is a tool that aids in the development of websites and APIs that use JSON Web Tokens in their Authorization request headers. It installs as a new tab in Developer Tools. When open, it automatically searches for network requests that contain a JWT authorization header and lists unique examples. These examples can then be selected to:

View the JSON Web Token payload.
See a list of all requests that used the same token.
Open the JWT in a new tab on https://jwt.io.
Copy the JWT to the clipboard.
Copy the Payload to the clipboard.
View request and response contents.                    

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

Tên AutoJWT AutoJWT
ID oipoapdoibncigbdbdiphiophmjbdfef
URL Chính Thức https://chromewebstore.google.com/detail/autojwt/oipoapdoibncigbdbdiphiophmjbdfef
Mô tả Browser developer extension to automatically find, parse, and copy JWT authorization tokens
Kích Thước Tệp 619 KB
Số Lần Cài Đặt 87
Phiên Bản Hiện Tại 0.5.2
Cập Nhật Lần Cuối 2021-12-16
Ngày Phát Hành 2021-12-15
Nhà Phát Triển Unknown
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Jaaromy/autojwt
URL Trang Trợ Giúp https://github.com/Jaaromy/autojwt/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutoJWT",
    "description": "Browser developer extension to automatically find, parse, and copy JWT authorization tokens",
    "version": "0.5.2",
    "manifest_version": 2,
    "permissions": [
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "devtools_page": "devtools.html",
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    }
}