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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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"
}