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.
擴展基本資訊
名稱 | AutoJWT |
ID | oipoapdoibncigbdbdiphiophmjbdfef |
官方網址 | 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 |
電子郵箱 | [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" } } |