Better Salesforce formula editor and AI Agent
This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas.
Co je Better Salesforce formula editor and AI Agent?
Better Salesforce formula editor and AI Agent je rozšíření Chrome vyvinuté Tailwind ltd, a jeho hlavní funkcí je „This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Better Salesforce formula editor and AI Agent
Stáhněte si soubory rozšíření Better Salesforce formula editor and AI Agent ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Want a better formula editor for Salesforce? - With Syntax highlighting - Field and Metadata autocomplete - Live snippets & Documentation - Tabulation support - lightning compatible Extension also offer an optional AI integration with https://adminagent.ai to allow you to use GPT based AI to write, edit and debug your Salesforce formulas.
Základní Informace o Rozšíření
Název | Better Salesforce formula editor and AI Agent |
ID | cfjbcfgcaojdoemakjmpeghfahcieigk |
Oficiální URL | https://chromewebstore.google.com/detail/better-salesforce-formula/cfjbcfgcaojdoemakjmpeghfahcieigk |
Popis | This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas. |
Velikost souboru | 955 KB |
Počet instalací | 10,000 |
Aktuální Verze | 0.3.5 |
Poslední Aktualizace | 2023-09-09 |
Datum Vydání | 2017-11-10 |
Hodnocení | 4.34/5 Celkem 73 Hodnocení |
Vývojář | Tailwind ltd |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://adminagents.ai/ |
URL Stránky Zásad Ochrany Soukromí | https://adminagents.ai/privacy-policy |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Better Salesforce formula editor and AI Agent", "description": "This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas.", "version": "0.3.5", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.salesforce.com\/**" ], "css": [], "js": [ "scripts\/inject.js" ], "all_frames": true } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "pages\/*.html", "media\/*.svg" ], "matches": [ "https:\/\/*.salesforce.com\/*" ], "extension_ids": [] } ], "optional_host_permissions": [ "https:\/\/*.adminagents.ai\/**", "https:\/\/*.admingpt.ai\/**" ] } |