// ==UserScript== // @name YahooAuctionWatchListNumber // @namespace http://tampermonkey.net/ // @version 0.3 // @description ヤフオクのウォッチリスト数を表示 // @author Yagi // @match https://page.auctions.yahoo.co.jp/jp/auction/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/370039/YahooAuctionWatchListNumber.user.js // @updateURL https://update.greasyfork.icu/scripts/370039/YahooAuctionWatchListNumber.meta.js // ==/UserScript== (function () { 'use strict'; var wl = window.conf.keys.wl; if (wl) { $("#l-sub .Count__counts").append("\n
  • \n
    \n
    \n \n
    \n
    \n " + wl + "\n
    \n
    \n
  • "); $(".Count__count").css("padding", "0 5px"); $(".Count__watch").css("padding", "0 3px"); } })();