Front-end Performance Analyzer

[Experiment] Chormium plugin for client-side performance analyzing

Front-end Performance Analyzer란 무엇입니까?

Front-end Performance Analyzer은(는) https://giangnb.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "[Experiment] Chormium plugin for client-side performance analyzing"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Front-end Performance Analyzer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is an experimentation tool for crawling and scoring URLs of a website. Collected data will be an input for performance test.

Gives you an overview of client-side performance and quickly helps you realizes poor performance or error pages. This allows you to be more proactive when working and resolving UX and performance issues at client-side.

NEW:
* Integration with Google PageSpeed insights (Requires GCP API key)
* Generates K6.io test script
* Meaningful and intuitive HTML report 
* Stability improvements                    

확장 프로그램 기본 정보

이름 Front-end Performance Analyzer Front-end Performance Analyzer
ID cahpbcpcaicofmeibkcelkifpkkjahbp
공식 URL https://chromewebstore.google.com/detail/front-end-performance-ana/cahpbcpcaicofmeibkcelkifpkkjahbp
설명 [Experiment] Chormium plugin for client-side performance analyzing
파일 크기 338 KB
설치 횟수 115
현재 버전 1.0.1.3
최근 업데이트 2022-03-21
출시 날짜 2022-03-10
개발자 https://giangnb.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://giangnb.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Front-end Performance Analyzer",
    "description": "[Experiment] Chormium plugin for client-side performance analyzing",
    "version": "1.0.1.3",
    "manifest_version": 3,
    "action": {
        "default_title": "OptiPerf",
        "default_popup": "toolbox.html"
    },
    "icons": {
        "16": "assets\/ico\/16.png",
        "48": "assets\/ico\/48.png",
        "128": "assets\/ico\/128.png",
        "256": "assets\/ico\/256.png"
    },
    "author": "",
    "homepage_url": "https:\/\/ep.giangnb.com\/",
    "incognito": "split",
    "content_security_policy": {
        "extension_pages": "default-src 'self' data: https:\/\/ep.giangnb.com\/* https:\/\/episerver.net\/*; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self' https:\/\/ep.giangnb.com\/* https:\/\/episerver.net\/*; object-src 'self'; sandbox allow-forms allow-same-origin allow-scripts"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/jquery.min.js",
                "clientworker.js"
            ]
        }
    ]
}