JWT

Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.

JWT là gì?

JWT là một tiện ích mở rộng Chrome được phát triển bởi Sandip Chitale, và tính năng chính của nó là "Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.".

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

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

                        Chrome extension to show decoded JWT token used by the last HTTP request using it.                    

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

Tên JWT JWT
ID kbfhngekhdipgofmnofbeanadlaakmja
URL Chính Thức https://chromewebstore.google.com/detail/jwt/kbfhngekhdipgofmnofbeanadlaakmja
Mô tả Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.
Kích Thước Tệp 14.86 KB
Số Lần Cài Đặt 2,061
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-09-01
Ngày Phát Hành 2018-09-01
Nhà Phát Triển Sandip Chitale
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sandipchitale/JWT
URL Trang Trợ Giúp https://github.com/sandipchitale/JWT/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JWT",
    "version": "1.1",
    "description": "Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.",
    "permissions": [
        "tabs",
        "activeTab",
        "webRequest",
        "declarativeContent",
        "http:\/\/*:*\/*",
        "https:\/\/*:*\/*"
    ],
    "background": {
        "scripts": [
            "jwt.js"
        ]
    },
    "page_action": {
        "default_title": "JWT",
        "default_popup": "jwtpopup.html",
        "show_matches": [
            "http:\/\/*:*\/*",
            "https:\/\/*:*\/*"
        ],
        "default_icon": {
            "16": "jwt.png",
            "24": "jwt.png",
            "32": "jwt.png"
        }
    },
    "manifest_version": 2
}