ezPAARSE Logger (Extension)

Capture the web traffic and send it to the logger application

ezPAARSE Logger (Extension)란 무엇입니까?

ezPAARSE Logger (Extension)은(는) ezpaarse에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture the web traffic and send it to the logger application"입니다.

ezPAARSE Logger (Extension) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Companion extension for the ezPAARSE logger web app. Let you capture the web traffic of your browser and analyze it with ezPAARSE.

More info at:
https://github.com/ezpaarse-project/ezpaarse-logger                    

확장 프로그램 기본 정보

이름 ezPAARSE Logger (Extension) ezPAARSE Logger (Extension)
ID cpjllnfdfhkmbkplldfndmfdbabcbidc
공식 URL https://chromewebstore.google.com/detail/ezpaarse-logger-extension/cpjllnfdfhkmbkplldfndmfdbabcbidc
설명 Capture the web traffic and send it to the logger application
파일 크기 22.71 KB
설치 횟수 70
현재 버전 2.2.3
최근 업데이트 2017-11-21
출시 날짜 2017-11-21
평점 5.00/5 총 2 개의 평점
개발자 ezpaarse
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ezPAARSE Logger (Extension)",
    "version": "2.2.3",
    "description": "Capture the web traffic and send it to the logger application",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/ezlogger-16.png",
            "48": "img\/ezlogger-48.png",
            "128": "img\/ezlogger-128.png"
        }
    },
    "permissions": [
        "",
        "webRequest",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/*",
                "*:\/\/analogist.couperin.org\/*",
                "*:\/\/analyses.ezpaarse.org\/*",
                "*:\/\/analyses-preprod.ezpaarse.org\/*",
                "*:\/\/ang.couperin.org\/*",
                "*:\/\/ang-preprod.couperin.org\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/ezlogger-16.png",
        "48": "img\/ezlogger-48.png",
        "128": "img\/ezlogger-128.png"
    }
}