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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον KIE, και η κύρια λειτουργία του είναι "Visualize and edit Serverless Workflow files using a graphical editor on GitHub".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Serverless Workflow Editor for GitHub
Λήψη αρχείων επέκτασης Serverless Workflow Editor for GitHub σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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\/*" ] } } |