json-viewer

Chrome extension that view json better.

What is json-viewer?

json-viewer is a Chrome extension developed by Neil Ding, and its main feature is "Chrome extension that view json better.".

Extension Screenshots

screenshot

Download json-viewer Extension CRX File

Download json-viewer 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

                                            

Extension Basic Information

Name json-viewer json-viewer
ID cbiilgehkppaalgiknkamjiknddlhggo
Official URL https://chrome.google.com/webstore/detail/json-viewer/cbiilgehkppaalgiknkamjiknddlhggo
Description Chrome extension that view json better.
File Size 7.74 KB
Installation Count 425
Current Version 0.5.5
Last Updated 2017-01-12
Publish Date 2017-01-12
Rating 4.60/5 Total 5 Ratings
Developer Neil Ding
Payment Type free
Extension Website https://github.com/gingerbear/json-viewer
Help Page URL https://github.com/gingerbear/json-viewer
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "json-viewer",
    "version": "0.5.5",
    "author": "Neil Ding",
    "description": "Chrome extension that view json better.",
    "permissions": [
        "clipboardWrite",
        "http:\/\/*\/",
        "contextMenus",
        "https:\/\/*\/",
        "ftp:\/\/*\/",
        "file:\/\/\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content.css"
    ],
    "manifest_version": 2
}