JWT
Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.
JWTとは何ですか?
JWTはSandip Chitaleによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.」です。
拡張機能のスクリーンショット
JWT拡張機能のCRXファイルをダウンロード
JWT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome extension to show decoded JWT token used by the last HTTP request using it.
拡張機能の基本情報
名前 | JWT |
ID | kbfhngekhdipgofmnofbeanadlaakmja |
公式URL | https://chromewebstore.google.com/detail/jwt/kbfhngekhdipgofmnofbeanadlaakmja |
説明 | Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers. |
ファイルサイズ | 14.86 KB |
インストール数 | 2,061 |
現在のバージョン | 1.1 |
最終更新日 | 2018-09-01 |
公開日 | 2018-09-01 |
開発者 | Sandip Chitale |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/sandipchitale/JWT |
ヘルプページのURL | https://github.com/sandipchitale/JWT/issues |
対応言語 | 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 } |