PickyJSON

JSON formatting and quick access to PickyJSON.com.

PickyJSONとは何ですか?

PickyJSONはdanjfordによって開発されたChromeの拡張機能で、その主な機能は「JSON formatting and quick access to PickyJSON.com.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

PickyJSON拡張機能のCRXファイルをダウンロード

PickyJSON拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
公式URL https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
説明 JSON formatting and quick access to PickyJSON.com.
ファイルサイズ 382 KB
インストール数 83
現在のバージョン 0.0.9
最終更新日 2017-03-24
公開日 2017-03-24
評価 5.00/5 合計 3 レビュー
開発者 danjford
支払い方法 free
拡張機能のウェブサイト http://pickyjson.com/
ヘルプページのURL https://github.com/danjford/pickyjson-extension/issues
対応言語 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"
}