Swashbuckle Swagger UI Autofill Helper

Adds name attributes to parameter inputs for Swashbuckle's generated Swagger UI so they work with Chrome's autofill.

Swashbuckle Swagger UI Autofill Helper란 무엇입니까?

Swashbuckle Swagger UI Autofill Helper은(는) ryanawesomevincent에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds name attributes to parameter inputs for Swashbuckle's generated Swagger UI so they work with Chrome's autofill."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Swashbuckle Swagger UI Autofill Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        At some point, Swashbuckle's generated Swagger UI changed to have a new look. When it did, the parameter inputs also lost their name attributes, which is what autofill is keyed off of in Google Chrome, so autofill stopped working in the Swagger UI. This extension dynamically adds that attribute back to those parameter inputs, so Chrome's autofill can work once again.

Using this extension is simple; just click the extension's button once you're on the generated Swagger page. As long as that tab stays on the Swagger page, it will continue to work. If you refresh the page or navigate away and back again, you'll have to click the button again to turn it back on for that page. You can tell if it's working for a tab when there's a checkmark in the icon. No checkmark, no autofill.                    

확장 프로그램 기본 정보

이름 Swashbuckle Swagger UI Autofill Helper Swashbuckle Swagger UI Autofill Helper
ID ecnjcaccolhjelmegdpppdckeadieinc
공식 URL https://chromewebstore.google.com/detail/swashbuckle-swagger-ui-au/ecnjcaccolhjelmegdpppdckeadieinc
설명 Adds name attributes to parameter inputs for Swashbuckle's generated Swagger UI so they work with Chrome's autofill.
파일 크기 6.01 KB
설치 횟수 49
현재 버전 1.1
최근 업데이트 2022-06-14
출시 날짜 2022-06-03
개발자 ryanawesomevincent
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Swashbuckle Swagger UI Autofill Helper",
    "description": "Adds name attributes to parameter inputs for Swashbuckle's generated Swagger UI so they work with Chrome's autofill.",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/autofillhelper16.png",
            "32": "\/images\/autofillhelper32.png",
            "48": "\/images\/autofillhelper48.png",
            "128": "\/images\/autofillhelper128.png"
        }
    },
    "icons": {
        "16": "\/images\/autofillhelper16.png",
        "32": "\/images\/autofillhelper32.png",
        "48": "\/images\/autofillhelper48.png",
        "128": "\/images\/autofillhelper128.png"
    }
}