ViewState Snail

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

ViewState Snail क्या है?

ViewState Snail Mike W द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps ASP.NET developers improve performance via increased awareness of View State footprint."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ViewState Snail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}