JSON-YAML Toggle

Toggle JSON and YAML in Browser

Wat is JSON-YAML Toggle?

JSON-YAML Toggle is een Chrome-extensie ontwikkeld door Yosuke Torii, en de belangrijkste functie is "Toggle JSON and YAML in Browser".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie JSON-YAML Toggle

Download JSON-YAML Toggle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam JSON-YAML Toggle JSON-YAML Toggle
ID dphedhpnbojdegjcokghhfploeobobbc
Officiële URL https://chromewebstore.google.com/detail/json-yaml-toggle/dphedhpnbojdegjcokghhfploeobobbc
Beschrijving Toggle JSON and YAML in Browser
Bestandsgrootte 87.48 KB
Aantal Installaties 2,472
Huidige Versie 1.0.0
Laatst Bijgewerkt 2019-03-08
Publicatiedatum 2019-03-08
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Yosuke Torii
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
}