ViewState Snail

Helps ASP.NET developers improve performance via increased awareness of View State footprint.

ViewState Snail란 무엇입니까?

ViewState Snail은(는) Mike W에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps ASP.NET developers improve performance via increased awareness of View State footprint."입니다.

확장 프로그램 스크린샷

screenshot

ViewState Snail 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        PURPOSE
- The idea is that you're a developer who wants to easily spot when a web page is using too much view state
- You want the information easily noticeable, rather than relying on you to click something to check view state.
- You want something your whole team can use, so you can share the responsibility.

Basic Functionality
- Counts HTML Length
- Counts VIEWSTATE Length
- Calculates a PERCENTAGE

UI
- PERCENTAGE displayed on the extension button
- Red-Amber-Green color based on thresholds you can configure

OPTIONS
- Threshold for Amber (Default 10,000 chars)
- Threshold for Red (Default 20,000 chars)

UPDATES
- v1.1 Added support for view state chunking
- v2.0 Migrated from Manifest V2 to Manifest V3                    

확장 프로그램 기본 정보

이름 ViewState Snail ViewState Snail
ID gapjlpgdhmiblidalppgbbfgkmaoehhm
공식 URL https://chromewebstore.google.com/detail/viewstate-snail/gapjlpgdhmiblidalppgbbfgkmaoehhm
설명 Helps ASP.NET developers improve performance via increased awareness of View State footprint.
파일 크기 56.45 KB
설치 횟수 759
현재 버전 2.0
최근 업데이트 2022-10-06
출시 날짜 2017-03-09
평점 4.60/5 총 10 개의 평점
개발자 Mike W
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0",
    "name": "ViewState Snail",
    "short_name": "ViewState Snail",
    "description": "Helps ASP.NET developers improve performance via increased awareness of View State footprint.",
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon19.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "manifest_version": 3
}