PickyJSON

JSON formatting and quick access to PickyJSON.com.

Qu'est-ce que PickyJSON ?

PickyJSON est une extension Chrome développée par danjford, et sa fonction principale est "JSON formatting and quick access to PickyJSON.com.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension PickyJSON

Téléchargez les fichiers d'extension PickyJSON au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
URL Officiel https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Description JSON formatting and quick access to PickyJSON.com.
Taille du Fichier 382 KB
Nombre d'Installations 83
Version Actuelle 0.0.9
Dernière Mise à Jour 2017-03-24
Date de Publication 2017-03-24
Évaluation 5.00/5 Total 3 Évaluations
Développeur danjford
Type de Paiement free
Site Web de l'Extension http://pickyjson.com/
URL de la Page d'Aide https://github.com/danjford/pickyjson-extension/issues
Langues Prises en Charge 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"
}