Додаци за прегледач Firefox
  • Проширења
  • Теме
    • за Firefox
    • Речници и језички пакети
    • Странице других прегледача
    • Додаци за Android
Пријавите се
Иконица додатка

Историјат издања додатка Salesforce Debug Pro - 12 издања

Salesforce Debug Pro од Harshit Saxena

Још увек нема оцена
0 звезда од 5
5
0
4
0
3
0
2
0
1
0
Историјат издања додатка Salesforce Debug Pro - 12 издања
  • Будите опрезни са старим издањима! Ова издања су приказана у сврхе тестирања и референце.Увек би требало да користите најновије издање додатка.

  • Најновије издање

    Издање 6.0.0

    Објављено 6. jul 2026. - 148,46 KB
    Ради са firefox 142.0 и касније
    Release: July 2026 · Previous: 5.2.0

    Major feature release. The Query tab now has org-aware SOQL/SOSL autocomplete — Salesforce-Inspector-style suggestion chips driven by the connected org's live metadata.


    As you type in the Query tab editor, a suggestions bar below the editor shows clickable chips that follow the caret's context:
    • Objects after FROM, in semi-joins (WHERE Id IN (SELECT … FROM |)), and after SOSL RETURNING — every object from the org's describe, including namespaced/managed-package objects (npsp__Donation__c), filtered to queryable for SOQL and searchable for SOSL.
    • Fields in SELECT, WHERE, ORDER BY, GROUP BY, and HAVING for the object in scope — even when FROM hasn't been typed yet (the engine looks ahead). Fields are capability-filtered per clause (filterable in WHERE, sortable in ORDER BY, groupable in GROUP BY, aggregatable inside aggregate functions).
    • Relationship traversal — reference fields offer both the field (AccountId) and the hop (Account.); chains like Contact.Account.Owner.Name resolve hop by hop, describing each target object lazily. Polymorphic lookups (Owner, What, Who) get a bounded policy: small target sets suggest the union of fields; wide ones (Task What) suggest the safe common set plus a TYPEOF hint.
    • Child-relationship subqueries — inside SELECT (SELECT … FROM |) the chips are the parent's child relationship names (Contacts, Opportunities), and fields inside the subquery resolve to the child object.
    • Values in WHERE — picklist values (quoted correctly whether you're inside an open string, a closed string, or at a bare position), TRUE/FALSE for checkboxes, the full date-literal set (TODAY, LAST_N_DAYS: …) for date/datetime fields, NULL for nillable fields.
    • Aggregate queries — COUNT(, COUNT_DISTINCT(, SUM(, AVG(, MIN(, MAX( and friends as function chips; aggregatable-field suggestions inside their parens; ROLLUP(/CUBE( in GROUP BY; aggregate-first suggestions in HAVING; aliases (SELECT COUNT(Id) c) don't confuse the parser.
    • Keywords & functions everywhere else — WHERE/ORDER BY/LIMIT after the FROM object, multi-word continuations done right (ORDER B completes to BY, never ORDER ORDER BY), SOSL IN ALL FIELDS / RETURNING flow, and a FIND { starter for an empty SOSL query.

    Keyboard & mouse: click any chip to insert it; Tab accepts the top match mid-word (still indents at word boundaries); Ctrl+Space (or Ctrl+.) accepts anywhere and re-opens dismissed suggestions; Esc hides the chips until you type again (a second Esc blurs the editor as before). Ctrl+Enter still executes — unchanged. Insertions go through the browser's native text-insertion path, so the editor's

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите Firefox и добијте додатак
    Преузмите датотеку
  • Старија издања

    Издање 5.2.0

    Објављено 1. jul 2026. - 135,18 KB
    Ради са firefox 142.0 и касније
    Release: July 2026 · Previous: 5.0.0

    Focused bug-fix release. Restores one-click login auto-fill on orgs that use Salesforce's username-first ("two-step") login flow.


    Symptom: Clicking a saved credential's "Open login page" (⧉) auto-filled the username but left the password empty, so login stopped with Salesforce's "Please enter your password" error. Reproduced on both Chrome and Firefox, on sandbox (test.salesforce.com) logins.

    Root cause: Salesforce sandbox (and, increasingly, production) uses a username-first login: the password field (#password) is not in the DOM on the first page — it only appears after the username is submitted. The old auto-fill waited 5 s for #password, timed out, logged "Login form elements not found", and filled nothing. The username visible on screen came from Salesforce's own ?un= URL-parameter prefill, not from the extension.

    What changed (entrypoints/content.ts → handleLoginPageAutoFill()):
    • After filling the username, the content script now probes for #password with a short 1.5 s timeout instead of the old blocking 5 s wait, then branches:
    • Single-step (both fields present) → fill password, submit — unchanged behaviour for orgs that still show one form.
    • Two-step (password absent) → submit the username, hand the password to the next page via a short-lived local token, and fill it there once #password renders.
    • Two-step SPA (password appears in-place without a full reload) → fill it directly when the field mutates in.

    This affects both Chrome and Firefox — the auto-fill logic is shared source, so the fix ships to both.
    • New storage helpers storePendingAutoFillStep2() / getPendingAutoFillStep2() (src/utils/storage.ts) hold the Base64-encoded password in browser.storage.local under pending_autofill_step2, bridging the page navigation between the username and password steps.
    • The token self-clears on read and expires after 30 seconds — same short-lived, local-only security model as the existing pending_autofill token. The password never leaves local storage and is never transmitted.


    permissions, host_permissions, content_scripts.matches, and web_accessible_resources are all unchanged from 5.0.0. No new third-party dependencies.


    npm run build (Chrome MV3) · npm run build:firefox (Firefox MV2). Both manifests report 5.2.0.

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 5.0.0

    Објављено 16. maj 2026. - 133,67 KB
    Ради са firefox 142.0 и касније
    Release Notes — v5.0.0

    Release: May 2026 · Previous: 4.3.0

    Major release. Two flagship additions plus 30+ smaller wins.

    1. Component Inspector — hover-to-select

    The Inspector now follows the cursor live (120ms debounce). Click pins the element (preventDefault) instead of navigating the Salesforce link; Esc unpins. Overlay shows tagName · 240×80 · LWC · 3 children, green border when pinned.

    New UX: copy buttons for CSS selector, XPath, Aura descriptor, component path, Apex class, "Copy as JSON" snapshot; DOM-ancestor breadcrumb; type filter chips (LWC/Aura/Platform/Flow/Custom) with counts; keyboard shortcuts (/ search, c copy selector, Esc clear); "Open in Setup" deep-links; XPath generation in the scanner.

    2. Flow Debugger — new top-level tab

    Complete Flow toolkit, gated by active session.

    Library: every flow from FlowDefinitionView with three-step fallback. Filters by Label/ApiName/Trigger, Active-only, Process Type, Trigger Type, Package scope. Sidebar Failure Feed of errored interviews. API Name Generator utility built in.

    Per-flow detail — 7 tabs:
    1. Overview — Flow.Metadata element outline + documentation gaps
    2. Health — 0-100 audit + report (SOQL/DML in loop, missing fault paths, hardcoded IDs)
    3. Runs — last 50 FlowInterviewLog executions, lazy entries
    4. Live State — paused/errored interviews with deep-link
    5. Coverage — FlowTestCoverage bar
    6. Versions — list + bulk delete (Active protected)
    7. Compare — two-version diff + CSV export

    Header: "Open in Flow Builder" and one-click Enable Flow Debug (60-min TraceFlag, Workflow=FINER).

    3. FLOW_* log parsing

    parseDebugLog() now recognises every FLOW_* event Salesforce emits at Workflow=FINER (interview lifecycle, element execution, assignments, rule outcomes, faults, limit usage). Surfaces in a green "Flow" track on the Execution Timeline and a dedicated Recent-Log drilldown.

    4. Setup-app domain support

    Auto-connect works on *.salesforce-setup.com. Cookie fallback maps org.my.salesforce-setup.com → org.my.salesforce.com where the sid lives. Adds one host permission.

    Bug fixes
    • FlowDefinitionView query → standard /query (Tooling rejected on many orgs)
    • Removed LastModifiedBy.Name (not exposed on FlowDefinitionView)
    • Resolve durable id → real Salesforce id before /sobjects/Flow/{id} + FlowTestCoverage
    • FlowVersionView.ApiName → use Label (field doesn't exist)
    • Managed flows: info panel instead of red error
    • Defensive parsedLog.flow* ?? [] for older cached parses
    • Chrome blank-popup fix via scripts/patch-chrome-popup.js

    Build

    npm run build (Chrome MV3) · npm run build:firefox (Firefox MV2). Both manifests report 5.0.0.

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 4.3.0

    Објављено 9. feb. 2026. - 98,51 KB
    Ради са firefox 142.0 и касније
    Release Notes - Version 4.3.0

    Release Date: February 2026

    Feature 1: Auto-Capture Login Credentials

    Automatically detect and save Salesforce credentials when you log in — whether you type manually, paste, or use a password manager (Zoho Vault, LastPass, 1Password, etc.).

    No manual entry needed — the extension watches the login form and prompts you to save.

    Three Scenarios

    | Scenario | What Happens | User Action |
    |----------|-------------|-------------|
    | Same password | Nothing — log in normally | None |
    | Changed password | Badge "UPD", banner: "Password changed" | Update or Dismiss |
    | New username | Badge "+1", banner: "New credential detected" | Save or Dismiss |

    When updating a password, the old one is automatically preserved in credential history.



    Feature 2: Bulk Import/Export Credentials

    Share credentials with your team. Export to JSON, import from file or clipboard.

    Export: Click Export -> choose to include or redact passwords -> downloads JSON file.

    Import: Click Import -> From File or From Clipboard -> preview counts -> choose mode.

    | Mode | New Credentials | Existing Credentials |
    |------|----------------|---------------------|
    | Import New Only | Added | Skipped |
    | Import All (overwrite) | Added | Updated |

    Validation: skips missing username/password and redacted passwords. Case-insensitive matching. Supports envelope and plain array formats.



    UI Changes
    • Orgs header: Import, Export, and Add buttons
    • Capture banner: Notification bar with Save/Update + Dismiss
    • Tab badge: Red dot on Orgs tab for pending captures
    • Extension badge: Green "+1" or "UPD" on capture, reverts to blue "SF" after 3s



    Bug Fixes
    1. Unicode encoding — encodeSecret() handles non-Latin1 characters. Backward-compatible.
    2. Login page guard — getSession() returns null for login pages.
    3. Form error handling — Save errors display a form-level message.
    4. Sync race condition — 3-second guard prevents sync from overwriting fresh local writes.
    5. Local-first storage — Credentials write to local first, then replicate to sync.



    Files Changed

    | File | Changes |
    |------|---------|
    | entrypoints/content.ts | setupLoginFormCapture() for login interception |
    | src/utils/storage.ts | Capture storage, import/export, local-first sync, Unicode fix |
    | entrypoints/background.ts | CREDENTIAL_CAPTURED handler + badge |
    | src/components/OrgCredentials.tsx | Capture banner, import/export UI |
    | entrypoints/popup/App.tsx | Orgs tab badge, version bump |
    | src/components/CredentialForm.tsx | Error handling |
    | src/services/salesforce-api.ts | isLoginPage() guard |

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 4.2.1

    Објављено 9. feb. 2026. - 95,28 KB
    Ради са firefox 142.0 и касније
    Release Notes - Version 4.2.1

    Release Date: February 9, 2026

    What's New

    Cleaner Tab Bar - Hide Inactive Log Analysis Tabs
    • Log analysis tabs are now hidden until a log is selected - The tabs SOQL, DML, Callouts, Perf, Timeline, Raw, and Limits were previously shown as disabled (grayed out) when no log was selected. They are now completely hidden, reducing visual clutter and making the tab bar cleaner.
    • Tabs appear automatically when a log is selected - Once you click on a log, all 7 analysis tabs appear and the view auto-switches to the SOQL tab. The layout adjusts smoothly.
    • Tabs hide again when no log is active - If the selected log is deleted or deselected, the analysis tabs disappear again.



    Changes from 4.1.1

    UI Improvements

    | Improvement | Details |
    |-------------|---------|
    | Hidden log analysis tabs | SOQL, DML, Callouts, Perf, Timeline, Raw, Limits tabs hidden when no log is selected |
    | Cleaner initial view | Tab bar only shows relevant tabs (Logs, Trace Flags, Saved, Navigation, etc.) |
    | Auto-adjusting layout | Tab bar width adjusts naturally when analysis tabs appear/disappear |



    Files Changed

    | File | Changes |
    |------|---------|
    | entrypoints/popup/App.tsx | Changed 7 log-analysis tabs from disabled to hidden; added .filter() to exclude hidden tabs from rendering; version bump to 4.2.1 |
    | package.json | 4.1.1 -> 4.2.1 |
    | wxt.config.ts | 4.1.1 -> 4.2.1 |



    No Changes To
    • Permissions, API calls, storage, sync, security model, content/background scripts, dependencies



    Firefox Users: Enable Sync

    To sync settings, credentials, and bookmarks across devices:
    1. Go to Settings > Sync and ensure Add-ons is checked
    2. Or: Menu > Settings > Sync > Manage What You Sync > Add-ons



    Upgrade Notes
    • Tab bar is now cleaner with fewer visible tabs on initial load
    • All log analysis functionality remains identical — tabs simply appear on demand
    • No workflow changes required

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 4.1.1

    Објављено 6. feb. 2026. - 95,26 KB
    Ради са firefox 142.0 и касније
    Release Notes - Version 4.1.1

    Release Date: February 6, 2026

    What's New

    Trace Flag Fixes & Improvements
    • Fixed: Form destroyed during background polling - Background poller created a new session object every 15s, causing Trace Flag Manager to reload with a spinner and destroy open forms. Session reference is now preserved when unchanged, and the spinner only shows on initial load.
    • Fixed: Update button now works - Editing a trace flag previously failed because the form was destroyed by polling before the API call could complete.
    • Edit form shows Start & Expiration Date - Both dates visible when editing. Start Date is read-only; Expiration Date defaults to now + 1 hour. Original values shown in brackets.
    • Removed redundant Refresh button - Data reloads automatically after every operation.



    Changes from 4.0.1

    Bug Fixes

    | Fix | Details |
    |-----|---------|
    | Session polling re-renders | Poller no longer creates new session references when data is unchanged |
    | Form disappearing | Loading spinner only on initial mount, not on refreshes |
    | Update button broken | Form survives background refresh cycles |

    UI Improvements

    | Improvement | Details |
    |-------------|---------|
    | Start & Expiration dates | Edit modal shows both dates with original values in brackets |
    | Smarter expiration default | Defaults to now + 1 hour instead of stale value |
    | Cleaner Trace Flags tab | Removed redundant Refresh button |



    Files Changed

    | File | Changes |
    |------|---------|
    | entrypoints/popup/App.tsx | Functional setSession to avoid reference changes; version bump |
    | src/components/TraceFlagManager.tsx | hasLoadedOnce flag; removed Refresh button |
    | src/components/TraceFlagForm.tsx | Start Date field; smarter expiration default |
    | package.json | 4.0.1 -> 4.1.1 |
    | wxt.config.ts | 4.0.1 -> 4.1.1 |



    No Changes To
    • Permissions, API calls, storage, sync, security model, content/background scripts, dependencies



    Firefox Users: Enable Sync

    To sync settings, credentials, and bookmarks across devices:
    1. Go to Settings > Sync and ensure Add-ons is checked
    2. Or: Menu > Settings > Sync > Manage What You Sync > Add-ons



    Upgrade Notes
    • Trace Flags tab no longer flickers or resets
    • Editing trace flags works reliably
    • Edit form shows both start and expiration dates for context

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 4.0.1

    Објављено 6. feb. 2026. - 95,09 KB
    Ради са firefox 142.0 и касније
    Release Notes - Version 4.0.1

    Release Date: February 6, 2026

    What's New

    UI Consistency Fix
    • Dropdown menu font alignment - The "More Actions" dropdown in the Org Credentials manager now uses the same font size and weight as the Edit Trace Flag modal
    • Changed from text-sm (14px) to text-xs (12px) with font-normal (400 weight)
    • Affects all dropdown items: Open in Incognito, Copy Details, Export as JSON, Credential History, Edit, Delete



    Changes from 4.0.0

    v4.0.1 Specific Changes
    • Updated credential dropdown menu styling in CredentialRow.tsx for visual consistency with modal forms
    • Version bump in package.json and wxt.config.ts



    No Changes To
    • Permissions (same as v4.0.0)
    • API calls or endpoints
    • Data handling, storage, or sync
    • Security model
    • Third-party libraries
    • Cross-device sync functionality



    Files Changed

    | File | Changes |
    |------|---------|
    | src/components/CredentialRow.tsx | Dropdown menu items: text-sm → text-xs font-normal |
    | package.json | Version bump 4.0.0 → 4.0.1 |
    | wxt.config.ts | Manifest version bump 4.0.0 → 4.0.1 |



    Upgrade Notes

    This is a minor UI patch with no breaking changes. Users upgrading will notice slightly smaller, more consistent text in the credential dropdown menu, matching the rest of the extension's compact styling.

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 4.0.0

    Објављено 6. feb. 2026. - 95,08 KB
    Ради са firefox 142.0 и касније
    Salesforce Debug Pro v4.0.0
    Cross-Device Sync
    Your saved data now syncs automatically across devices logged into the same browser account.

    What syncs
    Org Credentials — All saved orgs (name, username, password, token, group, color, environment, UI type, credential history)
    Settings — API version, max logs, dark mode
    Bookmarks — Saved log metadata with labels, notes, tags
    Query History — Last SOQL, SOSL, and Apex queries (text only)
    Preferred Trace Flag Configs — Debug level presets (new)
    What stays local
    Recently Used (per-device), Active Sessions, Pending Auto-fill (30s expiry), Saved Query Results
    How it works
    Uses browser.storage.sync — browser's built-in encrypted sync
    Data chunked to fit 8KB per-item / 100KB total limits
    Write throttling prevents rate limit issues (120 writes/min)
    Always-on — auto-enabled on first install or upgrade
    Sync UI
    Status indicator (green/blue/red/orange) with last synced timestamp
    Storage usage bar (KB / 100KB)
    Sync Now button for manual push
    Cloud icon in header showing sync status
    Credential History
    Editing a credential's username or password automatically saves previous values.

    Up to 10 entries per credential
    Access via dropdown menu: "Credential History (N)"
    Shows previous username/password with change date
    Reveal/Hide toggle, Copy buttons for both fields
    Syncs across devices
    Preferred Trace Flag Configurations
    Save commonly used trace flag setups as reusable presets.

    Save: Check "Save as Preferred Configuration" when creating a trace flag
    Load: Select from "Load from Preferred Config" dropdown in the form
    Manage: Collapsible section in Trace Flags tab with Use/Delete actions
    Default: Mark a preset as default
    Syncs across devices
    Technical
    Chunking: arrays split into groups under 7,500 bytes with manifest + numbered keys
    Write queue: 500ms debounce batching
    Change listeners on both sync and local areas with 200ms debounce
    Migration runs on install/update via checkAndRunMigration()
    Quota exceeded fallback with status reporting

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 3.0.1

    Објављено 4. feb. 2026. - 89,94 KB
    Ради са firefox 142.0 и касније
    v3.0.1 (Patch Release)
    - Unified Add Credential popup styling to match Create Trace Flag form
    - Consistent compact font sizes and weights across all modal forms
    - Updated extension header name to "Salesforce Debug Pro"

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 3.0.0

    Објављено 4. feb. 2026. - 89,96 KB
    Ради са firefox 142.0 и касније
    Release Notes - Version 3.0.0

    Release Date: February 4, 2026

    What's New

    Trace Flag Manager UI Improvements
    • Redesigned Create Trace Flag popup with a cleaner, more compact layout
    • Search-based user selection - Type to search for users instead of scrolling through a dropdown. Results appear instantly as you type
    • Reduced font sizes throughout the popup for better fit within the extension window
    • Fixed dropdown overflow - All dropdowns now stay within the extension boundaries

    Security Enhancements
    • Removed all innerHTML assignments from bundled code for enhanced security
    • Safe DOM manipulation - Replaced innerHTML with DOMParser-based approach for syntax highlighting
    • Passes Firefox Add-ons (AMO) validation with zero warnings



    Changes from 2.0.0

    UI/UX Changes

    | Component | Before (2.0.0) | After (3.0.0) |
    |-----------|----------------|---------------|
    | User Selection | Dropdown with search filter | Search input with inline results |
    | Form Font Size | Default (text-sm) | Compact (text-xs, text-[10px]) |
    | Dropdown Width | Could overflow popup | Constrained to popup width |
    | Header | font-semibold | font-medium |
    | Padding | p-4 throughout | p-2/p-3 (more compact) |

    Technical Changes
    • Updated TraceFlagForm.tsx with new search-based user picker
    • Enhanced patch-innerhtml.js to handle PrismJS innerHTML patterns
    • All innerHTML assignments replaced with safe alternatives:
    • Preact's __html prop → textContent
    • PrismJS highlighting → DOMParser with template element



    Upgrade Notes

    This is a minor UI update with no breaking changes. Users upgrading from 2.0.0 will notice:
    - Trace Flag creation form is more compact
    - User search is now inline (no separate dropdown)
    - Overall cleaner appearance in the Trace Flags tab



    Full Feature List (v3.0.0)

    Debug Log Analysis
    • Fetch and display Salesforce debug logs
    • Parse debug log format with syntax highlighting
    • Detect N+1 SOQL query patterns
    • Visualize governor limit usage
    • Export analysis results

    Trace Flag Management
    • View active trace flags
    • Create new trace flags with search-based user selection
    • Edit trace flag expiration and debug level
    • Delete trace flags
    • Support for User Debug and Developer Log types

    Org Credentials Manager
    • Save and manage multiple Salesforce org credentials
    • Group credentials by organization
    • Recently used credentials section
    • Auto-fill login pages
    • Smart session detection (reuses existing browser sessions)
    • Open orgs in new tab or incognito window
    • Copy/export credential details

    Cross-Browser Support
    • Chrome (Manifest V3)
    • Firefox (Manifest V2)
    • Dark mode support

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 2.0.0

    Објављено 4. feb. 2026. - 65,02 KB
    Ради са firefox 142.0 и касније
    Auto-Login for Saved Credentials
    One-click login to your Salesforce orgs - When you click "Open" on a saved credential, the extension automatically:

    Opens the Salesforce login page in a new tab
    Fills in your username and password
    Clicks the Login button automatically
    No more copying and pasting credentials - just click and you're logged in.

    How it works:

    Credentials are securely stored in browser storage (Base64 encoded)
    Auto-fill uses native browser APIs to simulate real user input
    Login page auto-submits after filling credentials
    Pending credentials are cleared immediately after use for security
    Supported login pages:

    login.salesforce.com (Production)
    test.salesforce.com (Sandbox)

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
  • Издање 1.0.0

    Објављено 3. feb. 2026. - 102,41 KB
    Ради са firefox 140.0 и касније
    Release Notes

    Version 1.0.0 (February 2026)

    Initial public release of Salesforce Debug Pro - a browser extension for analyzing Salesforce debug logs.

    Features

    Debug Log Analysis
    • Fetch and display debug logs directly from any Salesforce org
    • Parse debug logs with automatic detection of key events
    • View raw log content with syntax highlighting and search

    N+1 SOQL Query Detection
    • Automatically detect N+1 query patterns in your Apex code
    • Identify queries executed inside loops
    • View query locations with line numbers and context

    Governor Limits Visualization
    • Real-time visualization of governor limit usage
    • Color-coded indicators for limit thresholds
    • Track SOQL queries, DML operations, CPU time, and heap size

    Org Credentials Manager
    • Save and manage multiple Salesforce org credentials
    • Organize credentials into groups
    • Quick connect with one-click login
    • Smart session detection - reuses existing browser sessions when available
    • Auto-fill login pages for saved credentials
    • Support for Production and Sandbox environments
    • Open orgs in regular or incognito windows

    Bookmarks
    • Bookmark important debug logs for later reference
    • Persist bookmarks across browser sessions

    Export & Share
    • Export analysis results in multiple formats
    • Copy log data to clipboard

    Technical Details
    • Browser Support: Chrome (Manifest V3), Firefox (Manifest V2)
    • Salesforce API: Uses Tooling API v62.0 (Winter '25)
    • Security: HTTPS-only connections, credentials stored locally with Base64 encoding
    • Request Handling: 30-second timeout with automatic abort

    Installation

    Chrome: Install from Chrome Web Store (link pending)

    Firefox: Install from Firefox Add-ons (link pending)

    Requirements
    • Must be logged into a Salesforce org to fetch logs
    • Debug logs must be enabled for your user in the org
    • For credential auto-fill, security token may be required if IP is not whitelisted

    Privacy

    This extension:
    - Does not collect or transmit any personal data
    - Stores credentials locally in your browser only
    - Communicates only with Salesforce servers you are logged into

    See PRIVACY_POLICY.md for full details.

    Known Limitations
    • Maximum of 200 debug logs displayed per fetch
    • Large logs (>2MB) may take longer to parse
    • Session extraction requires an active Salesforce tab

    Feedback & Issues

    Report bugs or request features at: https://github.com/Harshit-Saxena/salesforce-debug-analyzer/issues

    Изворни код је објављен под само ГНУ мања општа јавна дозвола v3.0

    Преузмите датотеку
Идите на почетну страницу Mozilla-е

Додаци

  • O програму
  • Блог о додацима за Firefox
  • Радионица за додатке
  • Центар за програмере
  • Политике програмера
  • Блог заједнице
  • Форум
  • Пријавите грешку
  • Водич за оцењивање

Преузмите

  • Download Firefox
  • Windows
  • macOS
  • iOS
  • Android
  • Linux
  • All

Најновије градње

  • Nightly
  • Beta

Firefox за предузећа

  • Enterprise

Заједница

  • Connect
  • Contribute
  • Developer

Прати

  • Instagram
  • YouTube
  • TikTok
  • Bluesky
  • Podcast
  • Приватност
  • Колачићи
  • Права

Изузев тамо где је другачије наведено , садржај на овој страници је лиценциран под Creative Commons Attribution Share-Alike дозволом v3.0 или било којим каснијим издањем.