ezPAARSE Logger (Extension)

Capture the web traffic and send it to the logger application

Cos'è ezPAARSE Logger (Extension)?

ezPAARSE Logger (Extension) è un'estensione di Chrome sviluppata da ezpaarse, e la sua funzione principale è "Capture the web traffic and send it to the logger application".

Scarica il file CRX dell'estensione ezPAARSE Logger (Extension)

Scarica i file di estensione ezPAARSE Logger (Extension) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome ezPAARSE Logger (Extension) ezPAARSE Logger (Extension)
ID cpjllnfdfhkmbkplldfndmfdbabcbidc
URL Ufficiale https://chromewebstore.google.com/detail/ezpaarse-logger-extension/cpjllnfdfhkmbkplldfndmfdbabcbidc
Descrizione Capture the web traffic and send it to the logger application
Dimensione del File 22.71 KB
Conteggio Installazioni 70
Versione Corrente 2.2.3
Ultimo Aggiornamento 2017-11-21
Data di Pubblicazione 2017-11-21
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore ezpaarse
Tipo di Pagamento free
Lingue Supportate 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"
    }
}