joysound.com歌詞コピーページ manifest.json { "name": "joysound歌詞コピー", "version": "1.0.0", "manifest_version": 3, "description": "joysound歌詞コピー", "content_scripts": [ { "matches": ["https://www.joysound.com/web/search/song/*"], "js": ["./app.js"] } ] } app.js const main = () => { const div = document.createElement('div'); const button = document.createElement('button'); div.appendChild(button); document.querySelector('h1').after(div); div.style.textAlign = 'center'; button.textContent = '歌詞をコピーする'; button.style.width = '150px'; button.style.height = '50px'; button.onclick = () => { document.addEventListener('copy', e => e.clipboardData.setData( 'text/plain', document .querySelector('p.ng-binding') .textContent.replace(/<br>/g, '\n') ) ); document.execCommand('copy'); alert('歌詞をコピーしました'); }; }; main(); 関連 歌ネット歌詞コピーページ UtaTenコピーページ うたまっぷコピーページ J-Lyric.netコピーページ JOYSOUND歌詞コピーページ 歌ネット歌詞コピー Chrome拡張 UtaTen歌詞コピー Chrome拡張 うたまっぷ歌詞コピー Chrome拡張 J-Lyric.net歌詞コピー Chrome拡張 プチリリ歌詞コピー Chrome拡張 joysound.com歌詞コピー Chrome拡張