Swagger JWT
Quick tool for generating jwt tokens for a swagger-based api
What is Swagger JWT?
Swagger JWT is a Chrome extension developed by Kyle Carbone, and its main feature is "Quick tool for generating jwt tokens for a swagger-based api".
Download Swagger JWT Extension CRX File
Download Swagger JWT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
                        Simple JWT filler for SwaggerUI.                     Extension Basic Information
| Name |   |  
| ID | ekbkcknepmilcklnanmchlicaoekojmj | 
| Official URL | https://chromewebstore.google.com/detail/swagger-jwt/ekbkcknepmilcklnanmchlicaoekojmj | 
| Description | Quick tool for generating jwt tokens for a swagger-based api | 
| File Size | 293 KB | 
| Installation Count | 34 | 
| Current Version | 1.0.2 | 
| Last Updated | 2018-04-09 | 
| Publish Date | 2018-04-09 | 
| Rating | 5.00/5 Total 1 Ratings | 
| Developer | Kyle Carbone | 
| Payment Type | free | 
| Extension Website | https://github.com/kccarbone/swagger-jwt | 
| Supported Languages | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Swagger JWT",
    "description": "Quick tool for generating jwt tokens for a swagger-based api",
    "version": "1.0.2",
    "options_page": "settings.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*\/"
    ]
}  |  |