Size Grabber

This extension will let you know the page size and view state size in bytes.

What is Size Grabber?

Size Grabber is a Chrome extension developed by https://www.neverrecycle.com, and its main feature is "This extension will let you know the page size and view state size in bytes.".

Extension Screenshots

screenshot

Download Size Grabber Extension CRX File

Download Size Grabber extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This is a quick and easy extension that will just let you know the page size and view state.  The view state is really only for aspx pages but the page size works anywhere.                    

Extension Basic Information

Name Size Grabber Size Grabber
ID jgoenlgmmmgickjnnepbpdhjkpfccino
Official URL https://chromewebstore.google.com/detail/size-grabber/jgoenlgmmmgickjnnepbpdhjkpfccino
Description This extension will let you know the page size and view state size in bytes.
File Size 5.58 KB
Installation Count 299
Current Version 1.0
Last Updated 2014-02-12
Publish Date 2014-02-12
Rating 4.00/5 Total 4 Ratings
Developer https://www.neverrecycle.com
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Size Grabber",
    "description": "This extension will let you know the page size and view state size in bytes.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}