ViewState Snail

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

ViewState Snail là gì?

ViewState Snail là một tiện ích mở rộng Chrome được phát triển bởi Mike W, và tính năng chính của nó là "Helps ASP.NET developers improve performance via increased awareness of View State footprint.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ViewState Snail

Tải xuống các tệp mở rộng ViewState Snail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ViewState Snail ViewState Snail
ID gapjlpgdhmiblidalppgbbfgkmaoehhm
URL Chính Thức https://chromewebstore.google.com/detail/viewstate-snail/gapjlpgdhmiblidalppgbbfgkmaoehhm
Mô tả Helps ASP.NET developers improve performance via increased awareness of View State footprint.
Kích Thước Tệp 56.45 KB
Số Lần Cài Đặt 759
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2022-10-06
Ngày Phát Hành 2017-03-09
Đánh Giá 4.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Mike W
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}