Skip to content

copy-box-path-to-clipboard.bookmarklet.js fails with "Document is not focused" error #187

Description

@MarikoOhtsuka

問題

2026/issue185/copy-box-path-to-clipboard.bookmarklet.js を実行すると、下記のエラーが発生してクリップボードにコピーされないことがある。

Uncaught (in promise) NotAllowedError: Failed to execute 'writeText' on 'Clipboard': Document is not focused.
at global.COPY_TO_CLIPBOARD.copyToClipboard (:1:2388)

原因

copyToClipboard 内で navigator.clipboard.writeText(res) を呼ぶまでに await confirmUrlExistence(...) によるfetch通信が2回挟まっており、その間にドキュメントのフォーカスが外れることでClipboard APIが NotAllowedError を返す。

対応案

  • writeText 呼び出し直前に window.focus() を追加してフォーカスを取り戻す
  • 失敗時に備え、document.execCommand("copy") 方式へのフォールバックを用意する

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions