Salesforce.com Enhanced Formula Editor

Enhances Salesforce formulas with syntax highlighting, autocomplete, formatting, field analysis, and syntax checking.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "24": "icon24.png",
      "32": "icon32.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.salesforce-setup.com/*",
        "https://*.lightning.force.com/*",
        "https://*.cloudforce.com/*"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "options.html",
        "edit_area_loader.js",
        "activate_editor.js",
        "elements_functions.js",
        "resize_area.js",
        "reg_syntax.js",
        "langs/en.js",
        "reg_syntax/forceformula.js",
        "edit_area.css",
        "edit_area.js",
        "manage_area.js",
        "edit_area_functions.js",
        "keyboard.js",
        "search_replace.js",
        "highlight.js",
        "regexp.js",
        "images/*",
        "jsforce-core.min.js",
        "jquery.min.js",
        "FieldDetailsScreenshot.jpg",
        "plugins/*",
        "review.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Enhances Salesforce formulas with syntax highlighting, autocomplete, formatting, field analysis, and syntax checking.",
  "name": "Salesforce.com Enhanced Formula Editor",
  "version": "2.6.1",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ]
}