Page Size Inspector

Reports page size, cache usage, network requests, load time.

What is Page Size Inspector?

Page Size Inspector is a Chrome extension developed by Tomi Mickelsson, and its main feature is "Reports page size, cache usage, network requests, load time.".

Extension Screenshots

screenshot
screenshot

Download Page Size Inspector Extension CRX File

Download Page Size Inspector 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

                        Quickly see total page size and request sizes.

Toolbar badge shows total request count.

Disable cache to see the page size for a first time visitor.

Copy report to clipboard.

OPEN SOURCE
https://github.com/tomimick/chrome-ext-page-size

Be safe, I'm a trustworthy developer with 3 open source extensions released.                    

Extension Basic Information

Name Page Size Inspector Page Size Inspector
ID oepnndnpjiahgkljgbohnnccmokgcoln
Official URL https://chromewebstore.google.com/detail/page-size-inspector/oepnndnpjiahgkljgbohnnccmokgcoln
Description Reports page size, cache usage, network requests, load time.
File Size 27.61 KB
Installation Count 10,194
Current Version 1.0.4
Last Updated 2021-06-04
Publish Date 2017-07-06
Rating 4.65/5 Total 23 Ratings
Developer Tomi Mickelsson
Email [email protected]
Payment Type free
Extension Website https://tomicloud.com
Help Page URL https://tomicloud.com
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Size Inspector",
    "short_name": "Page Size Inspector",
    "description": "Reports page size, cache usage, network requests, load time.",
    "version": "1.0.4",
    "permissions": [
        "",
        "debugger",
        "webNavigation"
    ],
    "browser_action": {
        "default_title": "Page Size Inspector",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "128": "icon128f.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": true
    },
    "manifest_version": 2,
    "minimum_chrome_version": "38"
}