AutoJWT
Browser developer extension to automatically find, parse, and copy JWT authorization tokens
AutoJWTとは何ですか?
AutoJWTはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Browser developer extension to automatically find, parse, and copy JWT authorization tokens」です。
拡張機能のスクリーンショット
AutoJWT拡張機能のCRXファイルをダウンロード
AutoJWT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | oipoapdoibncigbdbdiphiophmjbdfef |
| 公式URL | https://chromewebstore.google.com/detail/autojwt/oipoapdoibncigbdbdiphiophmjbdfef |
| 説明 | Browser developer extension to automatically find, parse, and copy JWT authorization tokens |
| ファイルサイズ | 619 KB |
| インストール数 | 87 |
| 現在のバージョン | 0.5.2 |
| 最終更新日 | 2021-12-16 |
| 公開日 | 2021-12-15 |
| 開発者 | Unknown |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/Jaaromy/autojwt |
| ヘルプページのURL | https://github.com/Jaaromy/autojwt/issues |
| 対応言語 | 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"
}
} | |