PickyJSON

JSON formatting and quick access to PickyJSON.com.

Was ist PickyJSON?

PickyJSON ist eine Chrome-Erweiterung, die von danjford entwickelt wurde, und ihr Hauptmerkmal ist "JSON formatting and quick access to PickyJSON.com.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

PickyJSON-Erweiterungs-CRX-Datei herunterladen

Laden Sie PickyJSON-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is a chrome extension that provides you with:

- JSON highlighting
  - Collapsible Objects and Arrays
  - An input which shows you the path to the attribute in the JSON

- Configuration of the Extension

- Quick access to pickyjson.com!
  - Select JSON, right click and click "Copy to PickyJSON"
  - On a page where there is only JSON in the body, a green notification will appear on the badge. Click the badge to be taken to pickyjson.com with that JSON.                    

Grundlegende Informationen zur Erweiterung

Name PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
Offizielle URL https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Beschreibung JSON formatting and quick access to PickyJSON.com.
Dateigröße 382 KB
Installationsanzahl 83
Aktuelle Version 0.0.9
Letztes Update 2017-03-24
Veröffentlichungsdatum 2017-03-24
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler danjford
Zahlungsart free
Erweiterungswebsite http://pickyjson.com/
Hilfeseite URL https://github.com/danjford/pickyjson-extension/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PickyJSON",
    "short_name": "PickyJSON",
    "version": "0.0.9",
    "description": "JSON formatting and quick access to PickyJSON.com.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/ractive.js",
                "js\/picky-highlight.js",
                "js\/clipboard.js",
                "js\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "css\/picky-highlight.css",
        "css\/style.css"
    ],
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon.png"
    },
    "icons": {
        "128": ".\/img\/icon.png"
    },
    "homepage_url": "https:\/\/github.com\/danjford\/pickyjson-extension",
    "options_page": "options.html"
}