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.”。

扩展截图

screenshot
screenshot

下载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 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
电子邮箱 [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\/**"
    ]
}