Papertrail JSON Parser

Parse JSON content in Papertrail log.

什么是Papertrail JSON Parser?

Papertrail JSON Parser是由ondrej.hlavacek开发的Chrome扩展程序,该扩展的主要功能是“Parse JSON content in Papertrail log.”。

扩展截图

screenshot

下载Papertrail JSON Parser扩展crx文件

下载Papertrail JSON Parser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Papertrail JSON Parser Papertrail JSON Parser
ID bccgamaeidlhnfodhdpkpekmbkoniofo
官方URL https://chromewebstore.google.com/detail/papertrail-json-parser/bccgamaeidlhnfodhdpkpekmbkoniofo
简介 Parse JSON content in Papertrail log.
文件大小 68.06 KB
安装次数 216
当前版本 0.1.2.0
更新时间 2016-12-12
上架时间 2016-12-12
评分 3.67/5 共3次评分
开发者 ondrej.hlavacek
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/keboola/papertrail-json-parser-chrome-extension
支持的语言 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\/"
    ]
}