PickyJSON

JSON formatting and quick access to PickyJSON.com.

Hvad er PickyJSON?

PickyJSON er en Chrome-udvidelse udviklet af danjford, og dens hovedfunktion er "JSON formatting and quick access to PickyJSON.com.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download PickyJSON-udvidelses-CRX-fil

Download PickyJSON-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
Officiel URL https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Beskrivelse JSON formatting and quick access to PickyJSON.com.
Filstørrelse 382 KB
Antal Installationer 83
Nuværende Version 0.0.9
Senest Opdateret 2017-03-24
Udgivelsesdato 2017-03-24
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler danjford
Betalingsmetode free
Udvidelseswebsted http://pickyjson.com/
Hjælpeside-URL https://github.com/danjford/pickyjson-extension/issues
Understøttede Sprog 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"
}