ezPAARSE Logger (Extension)

Capture the web traffic and send it to the logger application

ezPAARSE Logger (Extension)คืออะไร?

ezPAARSE Logger (Extension) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ezpaarse และคุณลักษณะหลักของมันคือ "Capture the web traffic and send it to the logger application"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ezPAARSE Logger (Extension)

ดาวน์โหลดไฟล์ส่วนขยาย ezPAARSE Logger (Extension) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}