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文件

下載JavaScript Profiler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}