JSON Viewer

The most beautiful and customizable JSON/JSONP highlighter that your eyes have ever seen. Open source at https://goo.gl/fmphc7

JSON Viewerとは何ですか?

JSON Viewerはtuliosによって開発されたChromeの拡張機能で、その主な機能は「The most beautiful and customizable JSON/JSONP highlighter that your eyes have ever seen. Open source at https://goo.gl/fmphc7」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

JSON Viewer拡張機能のCRXファイルをダウンロード

JSON Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        It is a Chrome extension for printing JSON and JSONP.

Notes:
* This extension might crash with other JSON highlighters/formatters, you may need to disable them
* To highlight local files and incognito tabs you have to manually enable these options on the extensions page
* Sometimes when the plugin updates chrome leaves the old background process running and revokes some options, like the access to local files. When this happen just recheck the option that everything will work again
* Works on local files (if you enable this in chrome://extensions)

Features
* Syntax highlighting
* 27 built-in themes
* Collapsible nodes
* Clickable URLs (optional)
* URL does not matter (the content is analysed to determine if its a JSON or not)
* Inspect your json typing "json" in the console
* Hot word `json-viewer` into omnibox (type `json-viewer` + TAB and paste your JSON into omnibox, hit ENTER and it will be highlighted)
* Toggle button to view the raw/highlighted version
* Works with numbers bigger than Number.MAX_VALUE
* Option to show line numbers
* Option to customize your theme
* Option to customize the tab size
* Option to configure a max JSON size to highlight
* Option to collapse nodes from second level + Button to unfold all collapsed nodes
* Option to include a header with timestamp + url
* Option to allow the edition of the loaded JSON
* Option to sort json by keys
* Option for C-style braces and arrays
* Scratch pad, a new area which you can type/paste JSON and format indefinitely using a button or key shortcut. To access type `json-viewer` + `TAB` + `scratch pad` ENTER

This plugin is open source
https://github.com/tulios

Bugs and suggestions
https://github.com/tulios/json-viewer/issues

Contributors
Thiago Pontes (@thiagopnts)
@bluec0re
@North101
Ben Hollander (@benhollander)
Mehdi Bahrami (@mehdibahraami)
Reimund Trost (@reimund)
Ben van Enckevort (@benvan)

License
MIT License

Any questions tweet me @tulios                    

拡張機能の基本情報

名前 JSON Viewer JSON Viewer
ID gbmdgpbipfallnflgajpaliibnhdgobh
公式URL https://chromewebstore.google.com/detail/json-viewer/gbmdgpbipfallnflgajpaliibnhdgobh
説明 The most beautiful and customizable JSON/JSONP highlighter that your eyes have ever seen. Open source at https://goo.gl/fmphc7
ファイルサイズ 310 KB
インストール数 1,959,587
現在のバージョン 0.18.1
最終更新日 2020-12-23
公開日 2017-10-23
評価 4.54/5 合計 1055 レビュー
開発者 tulios
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/tulios/json-viewer
ヘルプページのURL https://github.com/tulios/json-viewer/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Viewer",
    "version": "0.18.1",
    "manifest_version": 2,
    "author": "Tulio Ornelas ",
    "description": "The most beautiful and customizable JSON\/JSONP highlighter that your eyes have ever seen. Open source at https:\/\/goo.gl\/fmphc7",
    "homepage_url": "https:\/\/github.com\/tulios\/json-viewer",
    "minimum_chrome_version": "21",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        "assets\/viewer.css",
        "assets\/viewer-alert.css",
        "pages\/options.html",
        "pages\/omnibox.html",
        "themes\/light\/base16-light.css",
        "themes\/light\/coy.css",
        "themes\/light\/funky.css",
        "themes\/light\/mdn-like.css",
        "themes\/light\/neo.css",
        "themes\/light\/solarized_light.css",
        "themes\/light\/yeti.css",
        "themes\/dark\/3024-night.css",
        "themes\/dark\/ambiance.css",
        "themes\/dark\/base16-dark.css",
        "themes\/dark\/cobalt.css",
        "themes\/dark\/dark.css",
        "themes\/dark\/dracula-custom.css",
        "themes\/dark\/dracula.css",
        "themes\/dark\/jellybeans.css",
        "themes\/dark\/material.css",
        "themes\/dark\/mbo.css",
        "themes\/dark\/mehdi.css",
        "themes\/dark\/midnight.css",
        "themes\/dark\/monokai.css",
        "themes\/dark\/okaidia.css",
        "themes\/dark\/panda-syntax.css",
        "themes\/dark\/solarized_dark.css",
        "themes\/dark\/tomorrow.css",
        "themes\/dark\/twilight.css",
        "themes\/dark\/zenburn.css"
    ],
    "offline_enabled": true,
    "omnibox": {
        "keyword": "json-viewer"
    },
    "options_page": "pages\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/viewer.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "assets\/backend.js",
            "assets\/omnibox.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*\/*",
        ""
    ]
}