Request Metrics Agent

Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.

Request Metrics Agent란 무엇입니까?

Request Metrics Agent은(는) https://requestmetrics.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Request Metrics Agent 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension automatically installs the Request Metrics real-user monitoring agent into the websites that you visit and sends your Core Web Vitals, performance metrics, and other event information back to the Request Metrics account of your choosing.

This was built to be a "no-code" option to trial the system, collecting data from your real website without you needing to make any code changes.                    

확장 프로그램 기본 정보

이름 Request Metrics Agent Request Metrics Agent
ID hldblpjckolplbppajmafldmmkabeaab
공식 URL https://chromewebstore.google.com/detail/request-metrics-agent/hldblpjckolplbppajmafldmmkabeaab
설명 Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.
파일 크기 1.1 MB
설치 횟수 92
현재 버전 1.1.2
최근 업데이트 2023-12-10
출시 날짜 2022-02-23
평점 5.00/5 총 1 개의 평점
개발자 https://requestmetrics.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://requestmetrics.com/
도움말 페이지 URL https://requestmetrics.com/guide/
개인정보 보호 정책 페이지 URL https://requestmetrics.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Request Metrics Agent",
    "description": "Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.",
    "version": "1.1.2",
    "manifest_version": 3,
    "icons": {
        "16": "\/assets\/favicon-16x16.png",
        "32": "\/assets\/favicon-32x32.png",
        "48": "\/assets\/favicon-48x48.png",
        "128": "\/assets\/favicon-128x128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "\/agent\/*",
                "\/assets\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/assets\/favicon-16x16.png",
            "32": "\/assets\/favicon-32x32.png",
            "48": "\/assets\/favicon-48x48.png",
            "128": "\/assets\/favicon-128x128.png"
        }
    }
}