Better MAL Favs

Choose how you want profile favorites to look like.

当前为 2021-12-22 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Better MAL Favs
  3. // @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
  4. // @version 0.4
  5. // @description Choose how you want profile favorites to look like.
  6. // @author hacker09
  7. // @match https://myanimelist.net/profile/*
  8. // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://myanimelist.net&size=64
  9. // @run-at document-end
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.head.insertAdjacentHTML('beforeend', '<style>.fav-slide-block .fav-slide .btn-fav .link .title, .fav-slide-block .fav-slide .btn-fav .link .users {opacity: unset;}</style>'); //Show the titles by default
  16. })();