Pixiv Text MOD

A script that makes pixiv great again (fix text position after 4/10's update)

  1. // ==UserScript==
  2. // @name Pixiv Text MOD
  3. // @namespace http://
  4. // @version 1.0
  5. // @description A script that makes pixiv great again (fix text position after 4/10's update)
  6. // @author DriftKingTW(Pixiv ID:9934873)
  7. // @match http://www.pixiv.net/member_illust.php
  8. // @require http://code.jquery.com/jquery-latest.js
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. var ratingCount = $('.rating-count');
  17. var comments = $('.comments');
  18. var views = $('.views');
  19. ratingCount.css({
  20. "margin-left":"0px",
  21. "text-align":"center",
  22. });
  23. comments.css({
  24. "margin-left":"0px",
  25. "display":"block",
  26. "text-align":"center",
  27. });
  28. views.css({
  29. "margin-right":"0px",
  30. "text-align":"center",
  31. });
  32. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址