PickyJSON

JSON formatting and quick access to PickyJSON.com.

PickyJSON là gì?

PickyJSON là một tiện ích mở rộng Chrome được phát triển bởi danjford, và tính năng chính của nó là "JSON formatting and quick access to PickyJSON.com.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PickyJSON

Tải xuống các tệp mở rộng PickyJSON dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
URL Chính Thức https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Mô tả JSON formatting and quick access to PickyJSON.com.
Kích Thước Tệp 382 KB
Số Lần Cài Đặt 83
Phiên Bản Hiện Tại 0.0.9
Cập Nhật Lần Cuối 2017-03-24
Ngày Phát Hành 2017-03-24
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển danjford
Loại Thanh Toán free
Trang Web Mở Rộng http://pickyjson.com/
URL Trang Trợ Giúp https://github.com/danjford/pickyjson-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}