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

최근 편집: 2020년 7월 20일 (월) 18:36
페미위키 깃헙 가젯 봇 (토론 | 기여)님의 2020년 7월 20일 (월) 18:36 판 (Github @lens0021의 https://github.com/femiwiki/remote-gadgets/commit/ed9d2b9)
// <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>