検索ボックスの横にHelpfeel検索ボタンを置くUserScript
検索ボックスに入力したキーワードを?q=に渡しつつ、新しいタブでHelpfeelを開くボタン
https://gyazo.com/96e3cea2c6dbd79de4a33506a3e5842b
code:script.js
(function (helpfeelUrl) {
const img = document.createElement('img')
img.style.height = '40px'
const a = document.createElement('a')
a.href = ''
a.addEventListener('click', function (event) {
event.preventDefault()
const q = document.querySelector('.search-form input').value.trim().slice(0, 50)
if (q && helpfeelUrl) window.open(${helpfeelUrl}?q=${encodeURIComponent(q)})
})
a.appendChild(img)
document.querySelector('div.navbar-form').appendChild(a)