ViewState Snail

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

Apa itu ViewState Snail?

ViewState Snail adalah ekstensi Chrome yang dikembangkan oleh Mike W, dan fitur utamanya adalah "Helps ASP.NET developers improve performance via increased awareness of View State footprint.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ViewState Snail

Unduh file ekstensi ViewState Snail dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama ViewState Snail ViewState Snail
ID gapjlpgdhmiblidalppgbbfgkmaoehhm
URL Resmi https://chromewebstore.google.com/detail/viewstate-snail/gapjlpgdhmiblidalppgbbfgkmaoehhm
Deskripsi Helps ASP.NET developers improve performance via increased awareness of View State footprint.
Ukuran File 56.45 KB
Jumlah Instalasi 759
Versi Saat Ini 2.0
Terakhir Diperbarui 2022-10-06
Tanggal Publikasi 2017-03-09
Penilaian 4.60/5 Total 10 Penilaian
Pengembang Mike W
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
}