Appian Dev Tools
A collection of enhancements for Appian developers.
Appian Dev Tools क्या है?
Appian Dev Tools Matt Yorkgitis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A collection of enhancements for Appian developers."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Appian Dev Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } |