BMC TrueSight Real User Monitoring Enterprise
The JavaScript plugin can collect metrics data from all the websites you visit
什麼是BMC TrueSight Real User Monitoring Enterprise?
BMC TrueSight Real User Monitoring Enterprise是由bmc.truesight.dso開發的Chrome擴展程式,該擴展的主要功能是“The JavaScript plugin can collect metrics data from all the websites you visit”。
擴展截圖
下載BMC TrueSight Real User Monitoring Enterprise擴展crx文件
下載BMC TrueSight Real User Monitoring Enterprise擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The JavaScript plugin can collect metrics data from your web applications. BMC TrueSight App Visibility Manager end-user monitoring provides visibility into end-to-end transaction time and availability, and browser page performance and availability, for your web-based applications. End-user data enables you to detect and respond when users are experiencing slow response times and outages. With TrueSight App Visibility Manager, you can monitor end-to-end transaction time and identify problematic parts (such as Ajax requests) of a web page. This Chrome extension enables enterprise deployment and monitoring of the enterprise SaaS applications, with no need to modify the application in any way.
擴展基本資訊
名稱 | |
ID | dhglkfamhcbjmfpclempekdmpjfclojd |
官方網址 | https://chrome.google.com/webstore/detail/bmc-truesight-real-user-m/dhglkfamhcbjmfpclempekdmpjfclojd |
簡介 | The JavaScript plugin can collect metrics data from all the websites you visit |
檔案大小 | 27.41 KB |
安裝次數 | 6,000 |
目前版本 | 1.0.4 |
更新時間 | 2019-09-05 |
上架時間 | 2019-08-25 |
評分 | 3.67/5 共 3 次評分 |
開發者 | bmc.truesight.dso |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BMC TrueSight Real User Monitoring Enterprise", "version": "1.0.4", "description": "The JavaScript plugin can collect metrics data from all the websites you visit", "manifest_version": 2, "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": "assets\/bmc_logo_16.png" }, "icons": { "16": "assets\/bmc_logo_16.png", "48": "assets\/bmc_logo_48.png", "128": "assets\/bmc_logo_128.png" }, "storage": { "managed_schema": "schema.json" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "script.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "*\/plugin_settings.json" ] } |