Papertrail JSON Parser

Parse JSON content in Papertrail log.

Wat is Papertrail JSON Parser?

Papertrail JSON Parser is een Chrome-extensie ontwikkeld door ondrej.hlavacek, en de belangrijkste functie is "Parse JSON content in Papertrail log.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Papertrail JSON Parser

Download Papertrail JSON Parser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        When you're sending JSON data in Papertrail logs this is an easy way to see JSON data visually structured.                    

Basisinformatie over de Extensie

Naam Papertrail JSON Parser Papertrail JSON Parser
ID bccgamaeidlhnfodhdpkpekmbkoniofo
Officiële URL https://chromewebstore.google.com/detail/papertrail-json-parser/bccgamaeidlhnfodhdpkpekmbkoniofo
Beschrijving Parse JSON content in Papertrail log.
Bestandsgrootte 68.06 KB
Aantal Installaties 216
Huidige Versie 0.1.2.0
Laatst Bijgewerkt 2016-12-12
Publicatiedatum 2016-12-12
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar ondrej.hlavacek
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/keboola/papertrail-json-parser-chrome-extension
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Papertrail JSON Parser",
    "short_name": "PT JSON Parser",
    "version": "0.1.2.0",
    "description": "Parse JSON content in Papertrail log.",
    "web_accessible_resources": [
        "script.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/papertrailapp.com\/*"
            ],
            "js": [
                "chrome-extension\/jquery-2.2.3.min.js",
                "extension.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/papertrailapp.com\/"
    ]
}