JavaScript Profiler

JavaScript Code Execution Analysis, real-time, 24x7. Provided by Germain UX

JavaScript Profiler란 무엇입니까?

JavaScript Profiler은(는) Germain UX에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "JavaScript Code Execution Analysis, real-time, 24x7. Provided by Germain UX"입니다.

확장 프로그램 스크린샷

screenshot

JavaScript Profiler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Features: 
- Analyze JavaScript execution, in real-time, 24x7
- Correlate JavaScript calls with Application Back-end Code (e.g Java, C#, Python, Php, etc), Database SQL, Integration, etc
- All the above metrics can viewed on Germain UX dashboard (onPremise or cloud instance: https://germainux.com/cloud-login)
- Automate Task (Alert, Data Update, Service Restart, Reporting, etc)
- For all your users or a targeted user

Benefits:
- Identify whether a User Experience issue is caused by slow or failing JavaScript, browser, network, infrastructure, application, database, and deep dive within the code (JS or backend), in real-time, 24x7                    

확장 프로그램 기본 정보

이름 JavaScript Profiler JavaScript Profiler
ID cjffkpkljodmdajjbkcjeflmmhnackij
공식 URL https://chromewebstore.google.com/detail/javascript-profiler/cjffkpkljodmdajjbkcjeflmmhnackij
설명 JavaScript Code Execution Analysis, real-time, 24x7. Provided by Germain UX
파일 크기 21.41 KB
설치 횟수 856
현재 버전 2022.3.2
최근 업데이트 2023-08-15
출시 날짜 2020-12-07
평점 4.11/5 총 9 개의 평점
개발자 Germain UX
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://germainux.com
도움말 페이지 URL https://docs.germainux.com/main/javascript-profiling
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JavaScript Profiler",
    "version": "2022.3.2",
    "homepage_url": "https:\/\/germainux.com",
    "description": "JavaScript Code Execution Analysis, real-time, 24x7. Provided by Germain UX",
    "icons": {
        "64": "icons\/normal.png"
    },
    "web_accessible_resources": [
        "icons\/normal.png"
    ],
    "browser_action": {
        "default_title": "JavaScript Profiler",
        "default_icon": "icons\/normal.png"
    },
    "offline_enabled": true,
    "permissions": [
        "",
        "debugger"
    ],
    "background": {
        "scripts": [
            "vendor.js",
            "libs\/browser-polyfill.min.js",
            "background\/install.js",
            "background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "vendor.js",
                "libs\/browser-polyfill.min.js",
                "content\/main.js",
                "content\/jsProfiler.js"
            ]
        }
    ]
}