Startpage.com Title with Query

Startpage.comのタイトルに検索クエリを追加します

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name            Startpage.com Title with Query
// @namespace       github.com/HitsujiRere/startpagecom-title-with-query
// @version         1.0.0
// @description     Append search query to title at Startpage.com
// @description:ja  Startpage.comのタイトルに検索クエリを追加します
// @author          HitsujiRere
// @match           https://www.startpage.com/*
// @grant           none
// @license         MIT
// ==/UserScript==

(function () {
  "use strict";

  const searchInput = document.getElementById("q");

  if (searchInput && searchInput.value) {
    document.title = searchInput.value + " - " + document.title;
  }
})();