소도구:image-in-search-bar.js

최근 편집: 2020년 3월 8일 (일) 00:45
낙엽1124 (토론 | 기여)님의 2020년 3월 8일 (일) 00:45 판
// <nowiki>
(function() {
  "use strict";

  var today = new Date();

  if (today.getMonth() != 2 || today.getDate() != 8) {
    return;
  }

  var icon = document.createElement("div");
  icon.id = "anniversary-icon";
  icon.innerHTML = "🥖🌹";
  document.getElementById("p-search").appendChild(icon);
})();
// </nowiki>