Serverless Workflow Editor for GitHub

Visualize and edit Serverless Workflow files using a graphical editor on GitHub

Serverless Workflow Editor for GitHub क्या है?

Serverless Workflow Editor for GitHub KIE द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Visualize and edit Serverless Workflow files using a graphical editor on GitHub"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Serverless Workflow Editor for GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Visualize and edit Serverless Workflow files using a graphical viewer and a custom Monaco editor on GitHub.

This Chrome Extension augments GitHub and provides a brand new way to handle your Serverless Workflow files directly on the GitHub interface. 
With the extension installed, you visualize your workflow with a graphical viewer, helping you to have a better experience and edit your Serverless Workflow files with an enhanced editor with powerful features, which will boost your productivity. The same applies to visualizing your assets on Pull Request reviews!

Some Open Source projects were vital for the development of this extension, and we would like to thank all of them, with highlights to:

- CNCF Serverless Workflow SDK Typescript: for workflow parsing;
- Mermaid: for workflow rendering and visualization;
- Apicurio: for our service catalog integration;                    

एक्सटेंशन की मूल जानकारी

नाम Serverless Workflow Editor for GitHub Serverless Workflow Editor for GitHub
ID ijamhkegfogkfnmfnfkjdiadomlphfej
आधिकारिक URL https://chromewebstore.google.com/detail/serverless-workflow-edito/ijamhkegfogkfnmfnfkjdiadomlphfej
विवरण Visualize and edit Serverless Workflow files using a graphical editor on GitHub
फ़ाइल का आकार 101 KB
स्थापना संख्या 91
वर्तमान संस्करण 0.32.0
अंतिम अपडेट 2023-10-12
प्रकाशन तिथि 2022-05-24
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर KIE
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Serverless Workflow Editor for GitHub",
    "version": "0.32.0",
    "manifest_version": 3,
    "description": "Visualize and edit Serverless Workflow files using a graphical editor on GitHub",
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "content_scripts\/github.js"
            ],
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "resources\/icon_16.png",
        "48": "resources\/icon_48.png",
        "128": "resources\/icon_128.png"
    },
    "action": {
        "default_icon": "resources\/icon_16.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/*",
                "scripts\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rulesset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "https:\/\/*.github.com\/*",
        "http:\/\/*.github.com\/*"
    ],
    "sandbox": {
        "pages": [
            "https:\/\/raw.githubusercontent.com"
        ]
    },
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; object-src 'self'"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/*.github.com\/*",
            "http:\/\/*.github.com\/*",
            "https:\/\/kiegroup.github.io\/*",
            "http:\/\/kiegroup.github.io\/*"
        ]
    }
}