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.
Better Salesforce formula editor and AI Agentとは何ですか?
Better Salesforce formula editor and AI AgentはTailwind ltdによって開発されたChromeの拡張機能で、その主な機能は「This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas.」です。
拡張機能のスクリーンショット
Better Salesforce formula editor and AI Agent拡張機能のCRXファイルをダウンロード
Better Salesforce formula editor and AI Agent拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Better Salesforce formula editor and AI Agent |
ID | cfjbcfgcaojdoemakjmpeghfahcieigk |
公式URL | https://chromewebstore.google.com/detail/better-salesforce-formula/cfjbcfgcaojdoemakjmpeghfahcieigk |
説明 | This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas. |
ファイルサイズ | 955 KB |
インストール数 | 10,000 |
現在のバージョン | 0.3.5 |
最終更新日 | 2023-09-09 |
公開日 | 2017-11-10 |
評価 | 4.34/5 合計 73 レビュー |
開発者 | Tailwind ltd |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://adminagents.ai/ |
プライバシーポリシーページのURL | https://adminagents.ai/privacy-policy |
対応言語 | 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\/**" ] } |