PickyJSON

JSON formatting and quick access to PickyJSON.com.

Apa itu PickyJSON?

PickyJSON adalah ekstensi Chrome yang dikembangkan oleh danjford, dan fitur utamanya adalah "JSON formatting and quick access to PickyJSON.com.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi PickyJSON

Unduh file ekstensi PickyJSON dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
URL Resmi https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Deskripsi JSON formatting and quick access to PickyJSON.com.
Ukuran File 382 KB
Jumlah Instalasi 83
Versi Saat Ini 0.0.9
Terakhir Diperbarui 2017-03-24
Tanggal Publikasi 2017-03-24
Penilaian 5.00/5 Total 3 Penilaian
Pengembang danjford
Tipe Pembayaran free
Situs Ekstensi http://pickyjson.com/
URL Halaman Bantuan https://github.com/danjford/pickyjson-extension/issues
Bahasa yang Didukung 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"
}