Appian Dev Tools
A collection of enhancements for Appian developers.
Τι είναι το Appian Dev Tools;
Το Appian Dev Tools είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Matt Yorkgitis, και η κύρια λειτουργία του είναι "A collection of enhancements for Appian developers.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Appian Dev Tools
Λήψη αρχείων επέκτασης Appian Dev Tools σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Current features include: - NEW - Save time making constants with the Constant Generator Tool. Quickly create Text and Number constants in with a CSV upload - NEW - Added a setting to enable variable formatting when looking at process instances - Changes favicons for most Appian objects that have a dedicated designer - Right-click to convert all underscored text input values to camelCased. Useful for quickly setting up CDTs from existing DB tables - Expression editor text sizing to allow for more code to be visible in the editor at once Extension works on localhost, appiancorp.com, appian.com, appiancloud.com and appianci.net environments. Look for the little red Appian designer icon in your loaded extensions list. Future enhancement ideas include: - Favicons for objects without designer windows (Users, Groups, Folders, etc.) - Environment specific favicons - Additional visual indicators for designer tabs that have unsaved changes or are read only - Additional expression editor themes - Autosave capabilities - Additional in-editor documentation and recipes for built-in Appian functions and user defined rules
Βασικές Πληροφορίες Επέκτασης
Όνομα | Appian Dev Tools |
ID | kihgnmoaccmngafihnnaanaijigdbpje |
Επίσημο URL | https://chromewebstore.google.com/detail/appian-dev-tools/kihgnmoaccmngafihnnaanaijigdbpje |
Περιγραφή | A collection of enhancements for Appian developers. |
Μέγεθος Αρχείου | 8.04 MB |
Αριθμός Εγκαταστάσεων | 321 |
Τρέχουσα Έκδοση | 0.0.7 |
Τελευταία Ενημέρωση | 2019-12-22 |
Ημερομηνία Δημοσίευσης | 2019-12-20 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Matt Yorkgitis |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Matt Yorkgitis", "name": "Appian Dev Tools", "version": "0.0.7", "description": "A collection of enhancements for Appian developers.", "icons": { "16": "48px.png", "48": "48px.png", "128": "48px.png" }, "content_scripts": [ { "matches": [ "http:\/\/localhost\/suite\/*", "https:\/\/localhost\/suite\/*", "*:\/\/*\/suite\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Appian Dev Tools", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'", "permissions": [ "tabs", "contextMenus", "storage", "http:\/\/localhost\/suite\/*", "https:\/\/localhost\/suite\/*", "*:\/\/*\/suite\/*" ] } |