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.

Wat is Better Salesforce formula editor and AI Agent?

Better Salesforce formula editor and AI Agent is een Chrome-extensie ontwikkeld door Tailwind ltd, en de belangrijkste functie is "This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Better Salesforce formula editor and AI Agent

Download Better Salesforce formula editor and AI Agent-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Better Salesforce formula editor and AI Agent Better Salesforce formula editor and AI Agent
ID cfjbcfgcaojdoemakjmpeghfahcieigk
Officiële URL https://chromewebstore.google.com/detail/better-salesforce-formula/cfjbcfgcaojdoemakjmpeghfahcieigk
Beschrijving This extension Improves Salesforce formula editor and includes an optional GPT AI Formula assistant to can help write formulas.
Bestandsgrootte 955 KB
Aantal Installaties 10,000
Huidige Versie 0.3.5
Laatst Bijgewerkt 2023-09-09
Publicatiedatum 2017-11-10
Beoordeling 4.34/5 Totaal 73 Beoordelingen
Ontwikkelaar Tailwind ltd
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://adminagents.ai/
URL van de Privacybeleid Pagina https://adminagents.ai/privacy-policy
Ondersteunde Talen 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\/**"
    ]
}