Page Size Inspector

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

Page Size Inspector란 무엇입니까?

Page Size Inspector은(는) Tomi Mickelsson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reports page size, cache usage, network requests, load time."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Page Size Inspector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Page Size Inspector Page Size Inspector
ID oepnndnpjiahgkljgbohnnccmokgcoln
공식 URL https://chromewebstore.google.com/detail/page-size-inspector/oepnndnpjiahgkljgbohnnccmokgcoln
설명 Reports page size, cache usage, network requests, load time.
파일 크기 27.61 KB
설치 횟수 10,194
현재 버전 1.0.4
최근 업데이트 2021-06-04
출시 날짜 2017-07-06
평점 4.65/5 총 23 개의 평점
개발자 Tomi Mickelsson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tomicloud.com
도움말 페이지 URL https://tomicloud.com
지원되는 언어 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"
}