Firefox 브라우저 부가 기능
  • 확장 기능
  • 테마
    • Firefox용
    • 사전 및 언어 팩
    • 다른 브라우저 사이트
    • Android 부가 기능
로그인
추가 기능 아이콘

CLAUDEZILLA의 버전 기록 - 9개 버전

CLAUDEZILLA 제작자: Boot Industries

아직 평점이 없습니다
0 / 5
5
0
4
0
3
0
2
0
1
0
CLAUDEZILLA의 버전 기록 - 9개 버전
  • 이전 버전의 사용에 주의하십시오! 이 버전들은 테스트 및 참조 용도로만 표시되는 것입니다.항상 최신 버전의 부가 기능을 사용해야 합니다.

  • 최신 버전

    버전 0.6.0

    2026년 3월 6일에 출시 - 309.38 KB
    firefox 91.0 이상에서 작동
    v0.6.0 — Annotated Screenshots, Domain Allowlists, Smarter Waiting

    NEW:
    • Annotated screenshots — firefox_screenshot with annotate:true overlays numbered badges
    on interactive elements. Response includes a label map so agents can say "click element
    3".
    • Domain allowlist — firefox_set_config lets agents restrict navigation to approved
    domains with wildcard support. Unauthorized URLs return DOMAIN_BLOCKED.
    • Expanded waitFor — now supports text (substring match on page text), url (glob match on
    location), and selector modes.
    • Page state diff — firefox_diff_page_state compares two snapshots and returns structured
    diffs (added/removed/changed elements). No extension round-trip needed.

    FIXES:
    • Orphan tab timeout increased from 2min to 10min (fewer false positives during long
    operations)
    • pressKey returns actionable errors for invalid key names
    • scroll returns noEffect flag when viewport didn't move
    • Watermark and focus glow hidden during screenshot capture
    • Fixed CONTENT_SCRIPT_ERROR false positives on JSON/XML/binary tabs
    • Network headers stripped from getNetworkRequests (60% smaller payloads)

    DOCS:
    • Full documentation now live at docs.claudezilla.com

    MIT 라이선스에 따라 릴리스된 소스 코드

    Firefox를 다운로드하고 확장 기능을 받으세요
    파일 다운로드
  • 이전 버전

    버전 0.5.9

    2026년 3월 5일에 출시 - 308.23 KB
    firefox 91.0 이상에서 작동
    This release fixes four bugs that combined to cause agents to get stuck on stale or non-existent tabs, requiring a full extension
    reload to recover.

    Bug fixes:
    • Session nuke on empty tabs (Critical) — When the last Claudezilla tab was closed externally, the entire session was wiped,
      requiring a full extension reload to resume. The error recovery is now scoped correctly: losing all tabs returns a NO_TABS error
      without destroying the window session.
    • Infinite retry on closed tab (Serious) — When a tab was closed while a command was in-flight, the extension returned
      CONTENT_SCRIPT_UNAVAILABLE, causing agents in loops to retry indefinitely on a tab that no longer existed. The extension now
      detects this case and returns TAB_CLOSED with actionable guidance.
    • Heartbeat timeout during long operations (Moderate) — The agent heartbeat was only refreshed at command arrival. Long-running
      operations (screenshots, waitFor) could exceed the 120-second orphan threshold during execution, causing the extension to
      prematurely reclaim the agent's tabs. The heartbeat now also refreshes immediately before the operation begins.
    • Overly broad error catch in session management (Moderate) — A single try/catch wrapped both window-level and tab-level failures.
      Both paths reset the session state, making recovery impossible without a reload. The scopes are now split: window failures reset
      state; tab failures return a targeted error without destroying the session.

    MIT 라이선스에 따라 릴리스된 소스 코드

    파일 다운로드
  • 버전 0.5.8

    2026년 2월 28일에 출시 - 307.86 KB
    firefox 91.0 이상에서 작동
    Bug fixes for macOS users.

    • Fixed native messaging host path on macOS — installer was writing the manifest to the Linux location
    (~/.mozilla/...) instead of ~/Library/Application Support/Mozilla/NativeMessagingHosts/. Caused "No
    such native application" error on first launch.
    • Fixed missing MCP dependencies — installer now runs npm install in the mcp/ directory automatically.
    Fresh clones no longer fail to start the MCP server.
    • Fixed tabId type coercion — all tab-targeting tools now accept tabId as either a string or number.
    Passing a string (as JSON sometimes does) previously caused "Incorrect argument types" errors from the
    Firefox tabs API.

    MIT 라이선스에 따라 릴리스된 소스 코드

    파일 다운로드
  • 버전 0.5.7

    2026년 2월 8일에 출시 - 306.83 KB
    firefox 91.0 이상에서 작동
    Version 0.5.7 - Critical Bug Fixes + Timeout Flexibility

    This release fixes critical bugs and adds timeout configuration for better reliability.

    BUG FIXES:
    • Screenshot error handling - Errors during capture now properly report to Claude instead of being silently ignored
    • Multi-agent coordination - Fixed race condition where multiple agents could claim the same reserved tab slot
    • Message ID overflow protection - Replaced numeric IDs with UUIDs to eliminate collision risk

    IMPROVEMENTS:
    • Per-operation timeout support - All browser automation tools now accept optional timeout parameter (5s-300s range, default: 150s)
    • Better error messages - Timeout errors now include operation name and duration for easier debugging

    This is a stability and reliability update with no breaking changes. All existing functionality remains backward compatible.

    Full changelog: https://github.com/boot-industries/claudezilla/blob/main/CHANGELOG.md

    MIT 라이선스에 따라 릴리스된 소스 코드

    파일 다운로드
  • 버전 0.5.6

    2026년 2월 1일에 출시 - 360.64 KB
    firefox 91.0 이상에서 작동
    Autonomous installation, bug fixes, and multi-agent improvements.

    New:
    - Autonomous permissions — Installers auto-configure Claude Code settings and MCP server
    - Expanded tab pool — 12 tabs shared across agents (up from 10)
    - Screenshot purpose presets — quick-glance, read-text, inspect-ui, full-detail

    Fixed:
    - Tab ID type mismatch — Tab operations no longer fail with "Tab not found" on valid tabs
    - Session cleanup on exit — Tabs are cleaned up immediately when a Claude session ends
    - Mercy system slot reservation — Freed slots are now reserved for the waiting agent (30s
    TTL)
    - Request timeouts extended to 150s for long-running browser operations
    - file:// URLs now allowed for local development
    - Improved error messages for content script failures

    MIT 라이선스에 따라 릴리스된 소스 코드

    파일 다운로드
  • 버전 0.5.5

    2026년 1월 25일에 출시 - 305.25 KB
    firefox 91.0 이상에서 작동
    v0.5.5 - Windows Support

    New:
    • Windows 10/11 support - Now works on Windows with named pipes for IPC
    • Path security validation - Prevents injection attacks via null bytes and path traversal

    Fixed:
    • Support link in popup now opens correctly

    Security:
    • Environment variable validation for temp directories
    • PowerShell installer uses safe JSON serialization

    MIT 라이선스에 따라 릴리스된 소스 코드

    파일 다운로드
  • 버전 0.5.4

    2026년 1월 24일에 출시 - 304.48 KB
    firefox 91.0 이상에서 작동
    v0.5.4 - Security hardening + performance optimization

    Security:
    • Expression validation - firefox_evaluate now blocks dangerous patterns (fetch, eval, document.cookie,
    localStorage, XMLHttpRequest)
    • Agent ID truncation - Privacy-enhanced logging shows truncated IDs in all outputs
    • Loop prompt sanitization - Preview field limited to 100 characters

    Performance:
    • Selector search optimization - 100 element limit per category with early exit
    • Screenshot mutex timeout reduced from 5s to 3s for faster multi-agent feedback

    MIT 라이선스에 따라 릴리스된 소스 코드

    파일 다운로드
  • 버전 0.5.3

    2026년 1월 18일에 출시 - 306.96 KB
    firefox 91.0 이상에서 작동
    v0.5.3: Reconnection resilience + diagnostics

    Features:
    • Auto-reconnect - Extension automatically reconnects when the native host disconnects (exponential backoff from 1s to 30s, max 10 attempts)
    • New firefox_diagnose tool - Comprehensive connection health check that validates socket, auth token, and provides actionable fix recommendations
    • MCP retry logic - Automatic retry with exponential backoff for transient connection failures

    Improvements:
    • Better error messages - Connection errors now show diagnostic info (socket/auth token state) with specific fix instructions
    • Updated MCP SDK (0.5.0 → 1.25.2) for Claude Code 2.1.x compatibility

    MIT 라이선스에 따라 릴리스된 소스 코드

    파일 다운로드
  • 버전 0.5.2

    2026년 1월 7일에 출시 - 304.14 KB
    firefox 91.0 이상에서 작동
    Bug fix:
    - Fixed Support link to open https://claudezilla.com/support instead of local page

    MIT 라이선스에 따라 릴리스된 소스 코드

    파일 다운로드
Mozilla 홈페이지로 이동

부가 기능

  • 소개
  • Firefox 부가 기능 블로그
  • 확장 기능 워크샵
  • 개발자 허브
  • 개발자 정책
  • 커뮤니티 블로그
  • 포럼
  • 버그 신고
  • 리뷰 지침

브라우저

  • Desktop
  • Mobile
  • Enterprise

제품

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Bluesky (@firefox.com)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • 개인 정보
  • 쿠키
  • 법률

특별한 고지가 없는 한, 본 사이트의 콘텐츠는 Commons Attribution Share-Alike License v3.0 또는 그 이후 버전에 따라 사용이 허가됩니다.