Firefox Browser Eklentileri
  • Uzantılar
  • Temalar
    • Firefox için
    • Sözlükler ve dil paketleri
    • Diğer tarayıcı siteleri
    • Android eklentileri
Giriş
Eklenti simgesi

Browser's external editor sürüm geçmişi - 12 sürüm

Browser's external editor geliştiren: Ruslan Osmanov

5 üzerinden 5 puan
5 üzerinden 5 puan
5
2
4
0
3
0
2
0
1
0
Browser's external editor sürüm geçmişi - 12 sürüm
  • Eski sürümlere dikkat edin! Bu sürümler yalnızca test veya referans amacıyla sunulmaktadır.Her zaman eklentilerin son sürümlerini kullanmalısınız.

  • Son sürüm

    Sürüm 3.3.1

    26 Nis 2025 tarihinde çıktı - 54,5 KB
    firefox 109.0a1 ve üstü ile çalışır
    New Feature: Support for ${line} and ${column} placeholders in the command line settings

    The Command Line field in the extension settings now supports two new placeholders:
    - ${line} for the 1-based line number
    - ${column} for the 1-based column number (offset from the beginning of the line)

    Example usage:
    /usr/local/bin/gvim --nofork +"call cursor(${line}, ${column})"

    Notes:
    - Quotes (single or double) are expanded similarly to shells.
    - Variable expansion (like $VAR) and backslash escaping are not supported.
    - Quotes are required when passing arguments that contain spaces. Without quotes, a line like +call cursor(${line}, ${column}) would be split into three arguments: +call, cursor(${line}, and ${column}).

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Bu uzantıyı kullanmak için Firefox’a ihtiyacınız var
    Firefox’u indir ve uzantıyı yükle
    Dosyayı indir
  • Eski sürümler

    Sürüm 3.3.0

    26 Nis 2025 tarihinde çıktı - 51,46 KB
    firefox 109.0a1 ve üstü ile çalışır
    New Feature: Support for ${line} and ${column} placeholders in the command line settings

    The Command Line field in the extension settings now supports two new placeholders:
    - ${line} for the 1-based line number
    - ${column} for the 1-based column number (offset from the beginning of the line)

    Example usage:
    /usr/local/bin/gvim --nofork +"call cursor(${line}, ${column})"

    Notes:
    - Quotes (single or double) are expanded similarly to shells.
    - Variable expansion (like $VAR) and backslash escaping are not supported.
    - Quotes are required when passing arguments that contain spaces. Without quotes, a line like +call cursor(${line}, ${column}) would be split into three arguments: +call, cursor(${line}, and ${column}).

    See https://github.com/rosmanov/chrome-bee/issues/12

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 3.2.2

    26 Nis 2025 tarihinde çıktı - 49,27 KB
    firefox 109.0a1 ve üstü ile çalışır
    Fixed Shadow DOM Traversal:
    - Fields hidden behind the Shadow DOM are now correctly detected and traversed by the extension's content script.This fix restores the ability to invoke the external editor for Markdown comment editors and search fields on sites like Reddit.

    Known Limitations
    - Advanced Rich Text Editors: Fields rendered via internal state management (e.g., React-based editors) remain unsupported. Programmatic updates to these fields are still not reflected reliably, as these editors treat external input differently from direct user typing.

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 3.2.1

    27 Mar 2023 tarihinde çıktı - 49,2 KB
    firefox 109.0a1 ve üstü ile çalışır
    Removed host_permissions permission request

    Also, performed some internal cleanup.

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 3.2.0

    25 Mar 2023 tarihinde çıktı - 47,7 KB
    firefox 109.0a1 ve üstü ile çalışır
    - Upgraded manifest version to version 3.
    - Fixed a bug where editor text might was sent to all tabs instead of the calling tab.

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 3.1

    13 Eki 2020 tarihinde çıktı - 56,18 KB
    firefox 48.0 ve üstü ile çalışır
    - Extension settings are now stored in the sync storage area
    - Translated to Russian

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 2.9

    15 Ağu 2020 tarihinde çıktı - 53,09 KB
    firefox 48.0 ve üstü ile çalışır
    Fixed a bug in extension preferences where extension field and "Remove" buttons were not available.

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 2.8

    15 Ağu 2020 tarihinde çıktı - 53,14 KB
    firefox 48.0 ve üstü ile çalışır
    Added support for custom filename extensions. The new feature works only with recent versions of the host application: either BeeCtl (https://github.com/rosmanov/bee-host) version 1.2.0 or newer, or the host app currently included in the extension repository (https://github.com/rosmanov/chrome-bee).

    Note, BeeCtl binaries will be uploaded to SourceForge soon.

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 2.7

    16 Eki 2019 tarihinde çıktı - 24,36 KB
    firefox 57.0 ve üstü ile çalışır
    Fix: editor was not opened if no extension settings were ever saved.

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 2.6

    15 Eki 2019 tarihinde çıktı - 23,87 KB
    firefox 57.0 ve üstü ile çalışır
    Added support for a native messaging host written in C ( https://github.com/rosmanov/bee-host )
    Fixed text field was not updated when the user switched to another tab
    Changed event page is now converted to persistent background page

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 2.5

    19 Haz 2019 tarihinde çıktı - 23,17 KB
    firefox 48.0 ve üstü ile çalışır
    - Added support for the arguments accepted by a C implementation of the host app: https://github.com/rosmanov/bee-host
    - Fixed: multiple editor windows were opened in Redmine

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
  • Sürüm 2.4

    6 Oca 2018 tarihinde çıktı - 21,04 KB
    firefox 50.0 ve üstü, android 50.0 - 68.* arası ile çalışır

    Kaynak kodu Yalnızca GNU Genel Kamu Lisansı v3.0 lisansıyla yayımlandı

    Dosyayı indir
Mozilla'nın ana sayfasına gidin

Eklentiler

  • Hakkında
  • Firefox Eklentileri Blogu
  • Uzantı Atölyesi
  • Geliştirici Merkezi
  • Geliştirici Politikaları
  • Topluluk Blogu
  • Forum
  • Hata bildir
  • İnceleme rehberi

Tarayıcılar

  • Desktop
  • Mobile
  • Enterprise

Ürünler

  • Browsers
  • VPN
  • Relay
  • Monitor
  • Pocket
  • Twitter (@firefox)
  • Instagram (Firefox)
  • YouTube (firefoxchannel)
  • Gizlilik
  • Çerezler
  • Hukuki Bilgiler

Aksi belirtilmedikçe bu sitedeki içerikler Creative Commons Attribution Share-Alike Lisansı v3.0 veya daha yeni sürümüyle lisanslanmıştır.