AWS State Machine JSON Parser

Extension to make improvements to the AWS State Machine execution ui nicer

ما هو AWS State Machine JSON Parser؟

AWS State Machine JSON Parser هو إضافة Chrome تم تطويرها بواسطة aeikenberry، والميزة الرئيسية لها هي "Extension to make improvements to the AWS State Machine execution ui nicer".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة AWS State Machine JSON Parser

قم بتنزيل ملفات الامتداد AWS State Machine JSON Parser بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        The execution details of a AWS Step Function are filled with giant json strings. This extension makes them easier to work with.                    

معلومات أساسية عن التمديد

الاسم AWS State Machine JSON Parser AWS State Machine JSON Parser
ID kllbjpnekodggjljlbjgaldilcpdcabj
عنوان URL الرسمي https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj
الوصف Extension to make improvements to the AWS State Machine execution ui nicer
حجم الملف 143 KB
عدد التثبيتات 42
النسخة الحالية 0.0.1
آخر تحديث 2017-09-26
تاريخ النشر 2017-09-26
تقييم 5.00/5 مجموع تقييمات 3
المطور aeikenberry
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/aeikenberry/execution-json-parser-extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS State Machine JSON Parser",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Extension to make improvements to the AWS State Machine execution ui nicer",
    "homepage_url": "http:\/\/github.com\/aeikenberry\/execution-json-parser-extension",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/console.aws.amazon.com\/states\/*",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Parsing your json"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/console.aws.amazon.com\/states\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "js\/viewer.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "css\/viewer.css"
            ],
            "run_at": "document_idle"
        }
    ]
}