ただし、これが入っていると Chrome での公開作業で怒られる。結局別ソースにするしかない。"browser_specific_settings": { "gecko": { "id": "kiseppe_ff@example.com" } },
$ zip -r -FS ../kiseppe-ff.zip * --exclude '*.git*' --exclude '*.DS_*'
警告: Due to both security and performance concerns, this may not be set using dynamic values which have not been adequately sanitized. This can lead to security issues or fairly serious performance degradation.
修正しなくても審査は通る。b.innerHTML = `実質<br><b>${jsdr}%</b></br>オフ`; ↓修正 b.appendChild(document.createTextNode('実質')); b.appendChild(document.createElement('br')); const bj = document.createElement('b'); bj.textContent = jsdr + '%'; b.appendChild(bj); b.appendChild(document.createElement('br')); b.appendChild(document.createTextNode('オフ'));