JSON-YAML Toggle

Toggle JSON and YAML in Browser

What is JSON-YAML Toggle?

JSON-YAML Toggle is a Chrome extension developed by Yosuke Torii, and its main feature is "Toggle JSON and YAML in Browser".

Extension Screenshots

screenshot

Download JSON-YAML Toggle Extension CRX File

Download JSON-YAML Toggle 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

                        Some development environments says you can use both JSON and YAML files for configuration, but  in most cases, samples are available in only one of those formats. This extension enables instant conversion between them so that you can easily copy and paste to your code!

You'll just right-click to open context menu and choose "Toggle JSON-YAML". Then JSON will be translated into YAML and YAML into JSON.                    

Extension Basic Information

Name JSON-YAML Toggle JSON-YAML Toggle
ID dphedhpnbojdegjcokghhfploeobobbc
Official URL https://chromewebstore.google.com/detail/json-yaml-toggle/dphedhpnbojdegjcokghhfploeobobbc
Description Toggle JSON and YAML in Browser
File Size 87.48 KB
Installation Count 2,472
Current Version 1.0.0
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 5.00/5 Total 2 Ratings
Developer Yosuke Torii
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON-YAML Toggle",
    "version": "1.0.0",
    "minimum_chrome_version": "35.0",
    "manifest_version": 2,
    "description": "Toggle JSON and YAML in Browser",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "homepage_url": "https:\/\/github.com\/jinjor\/json-yaml-toggle"
}