ezPAARSE Logger (Extension)

Capture the web traffic and send it to the logger application

Co to jest ezPAARSE Logger (Extension)?

ezPAARSE Logger (Extension) to rozszerzenie Chrome opracowane przez ezpaarse, a jego główną funkcją jest „Capture the web traffic and send it to the logger application”.

Pobierz plik CRX rozszerzenia ezPAARSE Logger (Extension)

Pobierz pliki rozszerzeń ezPAARSE Logger (Extension) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa ezPAARSE Logger (Extension) ezPAARSE Logger (Extension)
ID cpjllnfdfhkmbkplldfndmfdbabcbidc
Oficjalny URL https://chromewebstore.google.com/detail/ezpaarse-logger-extension/cpjllnfdfhkmbkplldfndmfdbabcbidc
Opis Capture the web traffic and send it to the logger application
Rozmiar pliku 22.71 KB
Liczba instalacji 70
Aktualna Wersja 2.2.3
Ostatnia Aktualizacja 2017-11-21
Data Publikacji 2017-11-21
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper ezpaarse
Typ Płatności free
Obsługiwane Języki 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"
    }
}