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

Plume — Micropub Client의 버전 기록 - 8개 버전

Plume — Micropub Client 제작자: Ricardo

아직 평점이 없습니다
0 / 5
5
0
4
0
3
0
2
0
1
0
Plume — Micropub Client의 버전 기록 - 8개 버전
  • 이전 버전은 주의해서 사용하세요! 아래 버전들은 테스트 및 참조용으로만 제공됩니다.부가 기능은 항상 최신 버전으로 사용해 주세요.

  • 최신 버전

    버전 1.6.2

    2026년 8월 16일에 출시 - 61.43 KB
    firefox 127.0 이상에서 작동
    Added
    Drafts are reachable from the composer itself. They were only listed in settings, which is a long way from where you are when you want one. A 🗒 button now sits in the popup header beside the pop-out arrow, showing how many drafts this blog has, and opens them in place — picking one loads it into the composer without opening a tab or leaving the popup. Each row shows what the draft says, its post type, the site a reply or bookmark targets, and how long ago it was saved, with a × to delete. The control is a labelled chip reading "2 drafts" rather than an icon, since the notepad emoji has no glyph in some Linux font sets and degraded to an empty box. It is hidden when there are no drafts, so the header stays clean for people who never accumulate any. Drafts remain listed in settings, where they can be opened across accounts.

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

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

    버전 1.6.0

    2026년 8월 16일에 출시 - 60.54 KB
    firefox 127.0 이상에서 작동
    Changed
    The post-type picker is now a vertical rail. It was a horizontal row with overflow-x: auto inside a 360px popup, so eight types meant a scrollbar and types that weren't visible until scrolled to. All eight now sit down the left as icon-above-label tabs, with the fields beside them. The popup goes from 360px to 420px so the writing column keeps the width it had rather than paying for the rail; pop-out mode needed no separate handling. Where a server advertises its own name for a type, that name is used, truncating with an ellipsis when longer than the built-in label — the full name is always in the tooltip.
    Fixed
    The debug log added in 1.5.0 recorded almost nothing. Every one of its call sites was a failure path and none covered posting, so the checkbox offering to record what Plume does produced an empty list. Worse, a post that failed outright called the error handler and returned without logging, so the crash that motivated building the log would not have appeared in it. The post lifecycle, popup open, account connected, per-step add-account failures and unavailable server config are now recorded; failures unconditionally, the rest behind the checkbox so an enabled log doesn't accumulate the URL of everything published.
    Fields in the composer were wider than the popup. The URL and title inputs set width: 100% alongside their own padding without box-sizing: border-box, so they measured 16px past the column holding them — visible as clipping once the rail narrowed that column. border-box is now set once for the whole popup rather than per field, so a new field cannot reintroduce it.
    Screenshots on the project site and in the README showed the previous horizontal picker. bun run screenshots also honours CHROME_PATH now, matching the E2E harness, so it can run where Playwright's bundled Chromium is unavailable.

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

    파일 다운로드
  • 버전 1.5.1

    2026년 8월 15일에 출시 - 59.97 KB
    firefox 127.0 이상에서 작동
    Fixed
    Posting failed with syndicateTo?.includes is not a function whenever no syndication target was selected. Reported against a reply, which is the post type least likely to be syndicated, but it applied to every type. Three things combined: [] is truthy in JavaScript, so if (options.syndicateTo) sent "mp-syndicate-to": [] on every post where nothing was picked; mf2tojf2 collapses an empty array to an empty object (a single-element array becomes a string, longer arrays stay arrays); and the receiving server then called .includes on that object. It only surfaced on servers that have syndication targets configured, which is why it looked intermittent — selecting one target made it work, selecting none broke it.

    Property values sent to the Micropub endpoint are now checked rather than trusted. category, mp-syndicate-to, photo, video, audio and extension properties were passed through from composer state unwrapped, though Micropub's JSON syntax requires every value to be an array. mp-syndicate-to is additionally reduced to uid strings and omitted when empty, since wrapping alone does not survive the server-side collapse to JF2. A coerced value is recorded in the debug log so the source of a bad shape can be found.

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

    파일 다운로드
  • 버전 1.5.0

    2026년 8월 15일에 출시 - 59.56 KB
    firefox 127.0 이상에서 작동
    Added
    A welcome page on first install. Plume previously installed in silence, leaving people to work out that an account has to be connected before anything happens. welcome.html explains Micropub and IndieAuth in plain language rather than assuming IndieWeb familiarity, states the one real prerequisite up front — your site must support Micropub — and walks through connecting an account. Opens once, gated on a genuine install, so updates don't reopen it.
    A debug log you can hand over. A 100-entry ring buffer, shown newest-first in settings with Copy and Clear. Errors are always recorded; everything quieter is behind a checkbox, so an enabled log stays readable while a disabled one still explains a failure. Entries are stripped to name, message, status, statusText, method and url, and access_token, code, code_verifier, refresh_token and state are redacted wherever they appear in a URL — a Micropub error can carry the request that produced it, including the Authorization header, and these logs exist to be pasted in public.
    The add-account flow now narrates itself. Instead of one opaque "Authorizing…" spanning a permission prompt, endpoint discovery, a possible second prompt, a token exchange and an account write, every step is listed up front and marked waiting, active, done or failed. The extra grant step that delegated-IndieAuth servers need is added once discovery reports it.
    Post types now use your server's own names. The ?q=post-types response finally reaches the type picker, so a server that calls articles "Journal entry" shows that.
    Fixed
    The type picker ignored server configuration entirely. TypePicker accepted an availableTypes prop and filtered on it, but the composer never passed one, so a response Plume already fetched and cached was thrown away. Types a server doesn't advertise are now dimmed with a tooltip rather than hidden or disabled: Indiekit only advertises types it has fields configured for, so absence means "not configured for that server's own UI", not "this post will be rejected".
    Endpoint discovery had no timeout, so a site that never answered hung the add-account flow indefinitely. Both fetches now give up after 10 seconds.
    Cancel was disabled while the add-account flow was busy, which combined with the above left no way out of the dialog. It is never disabled now.
    Loading server configuration is a deliberately non-fatal step: a server with a broken ?q=config is reported in red but the account is still added, and the popup opens with a warm cache.
    Changed
    The client_id page declares literal redirect URIs instead of wildcards. The OAuth working group's position is that wildcards in redirect URLs open up attack vectors, and neither browser needs one — Chrome derives its callback host from the extension ID, and Firefox uses sha1(browser_specific_settings.gecko.id), so both are fixed and declarable. Measured from browser.identity.getRedirectURL() and confirmed against that hash.

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

    파일 다운로드
  • 버전 1.4.0

    2026년 8월 13일에 출시 - 57.13 KB
    firefox 127.0 이상에서 작동
    • draft notes can now be saved and then edit and published

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

    파일 다운로드
  • 버전 1.3.1

    2026년 8월 12일에 출시 - 57.24 KB
    firefox 127.0 이상에서 작동
    Changelog : https://github.com/rmdes/plume/releases

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

    파일 다운로드
  • 버전 1.3.0

    2026년 7월 17일에 출시 - 56.58 KB
    firefox 127.0 이상에서 작동
    Multi-account feature

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

    파일 다운로드
  • 버전 1.2.0

    2026년 5월 20일에 출시 - 56.44 KB
    firefox 127.0 이상에서 작동
    Markdown toolbar + preview in the composer. New toolbar above the textarea with buttons for bold, italic, link, bulleted list, numbered list, blockquote, inline code, and heading. Toolbar actions wrap the current selection (or insert a placeholder that becomes the next selection — VS Code pattern) and restore the cursor after Preact's re-render via a microtask scheduler.
    👁 Preview toggle swaps the textarea for a rendered Markdown pane. Parsing uses snarkdown for the practical Micropub subset (paragraphs, headings, bold/italic, links, lists, code spans, blockquotes) and DOMPurify to neutralize any raw <script> / <iframe> / on*-handlers that might survive — important because the preview renders inside the privileged extension popup.
    Lazy-loaded markdown machinery: snarkdown + DOMPurify (~27 kB combined) only download when the user clicks Preview. Cold popup-open cost grew by ~5.75 kB (toolbar component code) instead of the +32 kB that eager-loading would have cost.

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

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

부가 기능

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

다운로드

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

최신 빌드

  • Nightly
  • Beta

기업용 Firefox

  • Enterprise

커뮤니티

  • Connect
  • Contribute
  • Developer

팔로우

  • Instagram
  • YouTube
  • TikTok
  • Bluesky
  • Podcast
  • 개인 정보
  • 쿠키
  • 법률

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