Papertrail JSON Parser

Parse JSON content in Papertrail log.

What is Papertrail JSON Parser?

Papertrail JSON Parser is a Chrome extension developed by ondrej.hlavacek, and its main feature is "Parse JSON content in Papertrail log.".

Extension Screenshots

screenshot

Download Papertrail JSON Parser Extension CRX File

Download Papertrail JSON Parser extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Papertrail JSON Parser Papertrail JSON Parser
ID bccgamaeidlhnfodhdpkpekmbkoniofo
Official URL https://chromewebstore.google.com/detail/papertrail-json-parser/bccgamaeidlhnfodhdpkpekmbkoniofo
Description Parse JSON content in Papertrail log.
File Size 68.06 KB
Installation Count 216
Current Version 0.1.2.0
Last Updated 2016-12-12
Publish Date 2016-12-12
Rating 3.67/5 Total 3 Ratings
Developer ondrej.hlavacek
Email [email protected]
Payment Type free
Extension Website https://github.com/keboola/papertrail-json-parser-chrome-extension
Supported Languages 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\/"
    ]
}