Firefox 브라우저 부가 기능
로그인
추가 기능 아이콘

iNaturalist Metadata Tool의 버전 기록 - 10개 버전

iNaturalist Metadata Tool 제작자: Megachile

5점 만점에 5점
5 / 5
5
3
4
0
3
0
2
0
1
0
iNaturalist Metadata Tool의 버전 기록 - 10개 버전
  • 이전 버전은 주의해서 사용하세요! 아래 버전들은 테스트 및 참조용으로만 제공됩니다.부가 기능은 항상 최신 버전으로 사용해 주세요.

  • 최신 버전

    버전 3.3.9

    2026년 7월 29일에 출시 - 246.4 KB
    firefox 109.0a1 이상, android 120.0 이상에서 작동
    v3.3.9 fixes autocomplete selections sometimes failing to populate Observation Field and Add to Project actions.

    Thanks @nyenyedzi for noticing that the earlier fix wasn't complete. That fix covered the separate Taxon ID autocomplete, but Observation Field and Project still used a shared dropdown that could disappear before a slow click finished.

    The shared autocomplete now selects before the input loses focus, fixing:

    Add Observation Field
    Add to Project
    Both sides of Copy Observation Field
    URL builder autocomplete fields
    Normal clicks continue to work, while press-and-hold selections now populate instantly and reliably.

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

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

    버전 3.3.8

    2026년 7월 26일에 출시 - 246.28 KB
    firefox 109.0a1 이상, android 120.0 이상에서 작동
    Three forum-reported issues, plus a set of bulk annotation undo bugs found while testing them.

    Added
    Annotation disagreements are now visible (#59, requested by @rcavasin) — when a conflicting annotation is already present and isn't yours to replace, iNaturalist only records your click as a downvote; the annotation you configured is never added. That used to flash green like any success, which is invisible if you annotate by keyboard shortcut with the Info tab open. The button now flashes amber and names both values. Bulk actions get a matching "Recorded as a downvote only" section listing each affected observation. Deliberate downvotes (the "Downvote (disagree with)" checkbox) are unaffected.
    Observation fields can be selected by ID (#60, reported by @ariellopezpics) — the Field ID box is no longer read-only; type an ID and the name fills in. Also wired into both ends of Copy Observation Field.
    The bulk action controls can be moved and hidden (#61, reported by @bradbarnd) — hover for a ☰ grip, drag anywhere, snaps to the nearest corner and remembers it. Shift+V (or a new checkbox under Bulk Action Settings) hides the whole cluster, and that now persists.
    Fixed
    Observation field search missed exact matches (#60) — searching date never offered the field actually called "Date" (ID 108); the API ranks by usage and only 10 results were requested, putting the exact match ~30th.
    The bulk controls covered the iNaturalist logo (#61) — they were anchored opposite the main buttons, so the default position pushed them over the logo. Alt+N now rotates both clusters together, preserving their arrangement.
    Undoing a bulk annotation did nothing — the undo record never captured the new annotation's identifier, so every annotation undo failed with "Annotation UUID not found".
    Undoing a replaced annotation discarded the original value — Alive → Dead → undo left the observation with no annotation instead of restoring Alive.
    Undoing could remove a vote you cast yourself — undo now restores a vote's original direction, only withdraws votes the action created, and leaves votes alone when it can't tell.
    Custom button order could be saved with invalid entries — saveButtonOrder existed twice and the surviving copy had lost its safeguards.
    Manually entered field IDs can no longer be saved unconfirmed, which previously paired a new ID with the previous field's name and datatype.
    Changed
    Removed 49 unreferenced functions (~1,100 lines), including a complete duplicate of the bulk results path that nothing called. A new test fails the build if dead code or duplicate declarations reappear.

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

    파일 다운로드
  • 버전 3.3.7

    2026년 7월 10일에 출시 - 246.54 KB
    firefox 109.0a1 이상, android 120.0 이상에서 작동
    New action: "Agree with Community ID" (#58) — posts an identification matching each observation's community taxon (falls back to the leading taxon when there's no consensus yet), resolved per-observation at run time. Skips observations with nothing to agree with, or where you already hold that identification.
    Fixed: bulk identification undo now works — undoing "Add Taxon ID" (and the new Agree) deletes the posted identification and restores the one it auto-withdrew. Previously the undo record never captured the posted ID's UUID, so undo silently did nothing.
    Fixed: Mac Cmd+click in bulk mode now opens the observation modal like Ctrl+click on Windows/Linux (#56).
    Hardened: an unrecognized action type now fails gracefully per-observation instead of crashing the whole batch.

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

    파일 다운로드
  • 버전 3.3.6

    2026년 7월 1일에 출시 - 245.14 KB
    firefox 109.0a1 이상, android 120.0 이상에서 작동
    The taxon autocomplete ↗ link was dead (residual from #56, reported by @bazwal on Firefox/Linux). After v3.3.5 moved suggestion selection to mousedown, the ↗ "open taxon page" link still relied on an <a> element, which only activates on click. Because click fires after the input blurs, the ~200 ms blur teardown could remove the link before the click landed — so clicking ↗ just closed the dropdown and did nothing. The link is now a <span> opened programmatically via window.open inside the mousedown handler (which fires before blur), so both selecting a taxon and opening its page are timing-independent.
    Taxa with no photo showed a broken-image icon. The suggestion thumbnail fell back to a placeholder.jpg that isn't bundled with the extension. No-photo taxa (and images that fail to load) now render a neutral gray placeholder rectangle sized to match the thumbnail, keeping row height and text alignment consistent.

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

    파일 다운로드
  • 버전 3.3.5

    2026년 6월 30일에 출시 - 244.53 KB
    firefox 109.0a1 이상, android 120.0 이상에서 작동
    Two bug fixes.

    Fixed
    "Enable Bulk Action Mode" button went off-screen when cycling button positions. The button only showed at the default bottom-right corner and disappeared at every other Alt+N position. It kept a stale position: fixed left over from before all bulk UI was moved into #bulk-ui-wrapper, so as a child of that wrapper it anchored to the viewport instead of following it. The button now flows inside the fixed wrapper and follows it to whichever corner it moves to.

    Clicking a taxon autocomplete suggestion could fail to register. The suggestion list is hidden ~200 ms after the input blurs, and selection ran on click (which fires after blur), so the list could be gone before the click landed. Selection now runs on mousedown with preventDefault — it fires before blur and keeps the input focused, so picks register reliably. The suggestion markup was also simplified, with the taxon page moved to a small ↗ link.

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

    파일 다운로드
  • 버전 3.3.4

    2026년 6월 11일에 출시 - 244.53 KB
    firefox 109.0a1 이상, android 120.0 이상에서 작동
    Freely movable & resizable button cluster (#54)
    The on-page button cluster can now be moved and resized freely, beyond the four corner presets.

    New
    Drag to move — grab the ☰ grip to place the cluster anywhere; position is remembered.
    Drag to resize — corner grip sets the cluster width; the size is remembered and overrides the max-width cap.
    Gear menu — the rarely-used Sort / Edit Layout / Set-picker controls now tuck behind a ⚙ gear instead of taking permanent space. Click to open, click away to close.
    Quiet by default — the grip and gear stay hidden until you hover the buttons, then enlarge and darken so they're easy to grab.
    Alt+N still cycles the corner presets and now also resets a free move/resize back to a corner.
    Robustness
    Stays clear of the scrollbar and never clips off-screen; saved layout re-clamps into view on window resize.
    Sort/edit/set controls snap to the side/edge nearest the cluster.
    Resize uses a min-height floor so buttons never spill past the box.
    Under the hood
    23 new tests; full suite 309 passing. No new permissions.

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

    파일 다운로드
  • 버전 3.3.3

    2026년 6월 6일에 출시 - 241.28 KB
    firefox 109.0a1 이상, android 120.0 이상에서 작동
    Added
    iNaturalist Network multi-node support (#51) — the buttons and shortcuts now work on every iNaturalist Network site (iNaturalist Australia / inaturalist.ala.org.au, mexico.inaturalist.org, naturalista.uy, argentinat.org, biodiversity4all.org, and the rest), not just www.inaturalist.org. The whole Network shares one account system and one API, so your existing login just works on whichever site you use. User-facing links (Identify/Explore, the URL builder) now stay on the node you're actually on.
    "All places" toggle in the URL builder — regional sites default to their own country when no place is set; tick this to add place_id=any and keep a query global. (Ignored if you've added a specific Place filter.)
    Fixed
    Editing an "Add Taxon ID" button wiped the taxon (#52) — opening a saved Add Taxon ID action and clicking Update Configuration failed with "Please select a valid taxon…" until you re-picked the taxon. The id is now preserved on edit.
    URL builder Location Accuracy labels were dead clicks (#53) — only the radio dots responded; the Any/True/False labels are now clickable and the Accuracy Above/Below labels sit on their number inputs.
    URL builder Geoprivacy couldn't be cleared (#53) — Geoprivacy and Taxon Geoprivacy now have an "Any" option, so you can return to no filter after selecting one.

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

    파일 다운로드
  • 버전 3.3.2

    2026년 5월 31일에 출시 - 239.84 KB
    firefox 109.0a1 이상, android 120.0 이상에서 작동
    Fixed
    Editing a multi-action configuration could blank a selection and fail to save (#50) — when a configuration had more than one action, the "Mark as Reviewed/Unreviewed" (and "Follow/Unfollow") radio buttons could silently lose their selection, and then Update Configuration threw Cannot read properties of null (reading 'value'). The radios used hardcoded name/id attributes, so every action's radios shared one document-wide radio group and cleared each other. Each action now gets a unique radio-group name/id, and the save reads are null-guarded with a sensible default. Thanks to @sbrobeson for the precise repro that pinpointed the cause.
    macOS Alt(Option) keyboard shortcuts did nothing (#49) — e.g. Alt+N to rotate buttons. On macOS, Option turns the keystroke into a special character, so event.key was no longer the letter the shortcut was matching against. Shortcuts now fall back to event.code (the physical key) when Alt is held.
    Mojibake on the options page — the expand/collapse arrows on existing configuration items (and a few other glyphs) rendered as â–¼ because options.html had no <meta charset>, so the browser decoded options.js as Windows-1252 instead of UTF-8. Added <meta charset="UTF-8">.
    Added
    Firefox for Android support (#47) — added browser_specific_settings.gecko_android to the manifest so the extension can be installed on Firefox for Android.

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

    파일 다운로드
  • 버전 3.3.1

    2026년 5월 29일에 출시 - 250.25 KB
    firefox 109.0a1 이상에서 작동
    ~8× faster bulk actions. A 200-obs OF bulk dropped from ~4–5 minutes to ~33 seconds via parallel validation, prevention, and per-obs action loops, plus a v2 selective-fields prefetch and elimination of unused waits.
    Downvote-existing-annotation action. New checkbox on the annotation action panel: downvote the matching existing annotation instead of trying to add a new one. Useful for cleanup workflows.
    URLgen state persistence. All your URL-builder settings (quality grade, reviewed, licenses, bbox, custom lists, action boxes) now actually persist across sessions. Previously only action boxes did.
    URLgen default state is now all three quality grades + reviewed=any (was just research-grade + reviewed=no).
    Bug fixes: 429 cascade on addAnnotation, silent undo-record loss past 10 MB, v2 prefetch subfield gap, dead-code cleanup.
    Fixed
    Project dropdown surfaces common-word projects (#48) — lookupProject now queries iNaturalist's relevance-ranked /projects/autocomplete endpoint instead of the general /projects search sorted by observation_count (which came back null, so the sort was meaningless and buried matches past per_page). Typing "blue" now finds the project Blue!.
    Added
    Manual project ID entry (#48) — the Project ID field is no longer read-only. Typing an ID resolves it via the new lookupProjectById helper and auto-fills the project name (inline success/error feedback), as an escape hatch for any project the dropdown still can't surface.

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

    파일 다운로드
  • 버전 3.2.3

    2026년 5월 10일에 출시 - 235.77 KB
    firefox 109.0a1 이상에서 작동
    Patch release: remove third-party CDN dependency.

    Discovered during the Chrome Web Store submission pass that URLgen.html loaded FontAwesome from cdnjs.cloudflare.com at runtime — meaning Cloudflare saw users' IPs every time the URL filter generator opened. This contradicted the privacy policy's claim of no third-party hosts beyond iNaturalist (and GitHub for explicit issue-reporter clicks).

    Removed
    The remote cdnjs.cloudflare.com stylesheet link from URLgen.html.
    Changed
    The two draw-control icons on the URL filter generator's map are now inline SVGs in URLgen.js, using currentColor so they inherit Leaflet's control styling. Zero additional payload; no font files; no remote loads.
    Note on .fa-* references in content.js
    Unchanged — those query iNaturalist's own page DOM (iNat already loads FontAwesome on its pages). We never needed to ship the library ourselves for those references.

    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 또는 그 이후 버전에 따라 사용이 허가됩니다.