PickyJSON

JSON formatting and quick access to PickyJSON.com.

PickyJSONคืออะไร?

PickyJSON เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danjford และคุณลักษณะหลักของมันคือ "JSON formatting and quick access to PickyJSON.com."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PickyJSON

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}