Papertrail JSON Parser

Parse JSON content in Papertrail log.

Qu'est-ce que Papertrail JSON Parser ?

Papertrail JSON Parser est une extension Chrome développée par ondrej.hlavacek, et sa fonction principale est "Parse JSON content in Papertrail log.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Papertrail JSON Parser

Téléchargez les fichiers d'extension Papertrail JSON Parser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Papertrail JSON Parser Papertrail JSON Parser
ID bccgamaeidlhnfodhdpkpekmbkoniofo
URL Officiel https://chromewebstore.google.com/detail/papertrail-json-parser/bccgamaeidlhnfodhdpkpekmbkoniofo
Description Parse JSON content in Papertrail log.
Taille du Fichier 68.06 KB
Nombre d'Installations 216
Version Actuelle 0.1.2.0
Dernière Mise à Jour 2016-12-12
Date de Publication 2016-12-12
Évaluation 3.67/5 Total 3 Évaluations
Développeur ondrej.hlavacek
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/keboola/papertrail-json-parser-chrome-extension
Langues Prises en Charge 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\/"
    ]
}