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文件

下載ViewState Snail擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}