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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tailwind ltd และคุณลักษณะหลักของมันคือ "This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better Salesforce formula editor and AI Agent

ดาวน์โหลดไฟล์ส่วนขยาย 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\/**"
    ]
}