pre要素とcode要素にtranslate="no"を付けて翻訳対象から外します
/* * @title コードブロックを翻訳対象から除外する * @description pre要素とcode要素にtranslate="no"を付けて翻訳対象から外します * @include * * @license MIT License * @javascript_url */ document.querySelectorAll('pre, code').forEach(el => el.setAttribute('translate', 'no'))