ezPAARSE Logger (Extension)

Capture the web traffic and send it to the logger application

ezPAARSE Logger (Extension) là gì?

ezPAARSE Logger (Extension) là một tiện ích mở rộng Chrome được phát triển bởi ezpaarse, và tính năng chính của nó là "Capture the web traffic and send it to the logger application".

Tải xuống tệp CRX của tiện ích mở rộng ezPAARSE Logger (Extension)

Tải xuống các tệp mở rộng ezPAARSE Logger (Extension) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ezPAARSE Logger (Extension) ezPAARSE Logger (Extension)
ID cpjllnfdfhkmbkplldfndmfdbabcbidc
URL Chính Thức https://chromewebstore.google.com/detail/ezpaarse-logger-extension/cpjllnfdfhkmbkplldfndmfdbabcbidc
Mô tả Capture the web traffic and send it to the logger application
Kích Thước Tệp 22.71 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 2.2.3
Cập Nhật Lần Cuối 2017-11-21
Ngày Phát Hành 2017-11-21
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ezpaarse
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}