Pixiv搜索結果排序 | Pixiv search sort

Pixiv搜索結果按收藏數從大到小排序,適配[TS] Pixiv++ V3 | Pixiv search result sort by bookmark count.

  1. // ==UserScript==
  2. // @name Pixiv搜索结果排序 | Pixiv search sort
  3. // @name:zh-TW Pixiv搜索結果排序 | Pixiv search sort
  4. // @description Pixiv搜索结果按收藏数从大到小排序,适配[TS] Pixiv++ V3 | Pixiv search result sort by bookmark count.
  5. // @description:zh-TW Pixiv搜索結果按收藏數從大到小排序,適配[TS] Pixiv++ V3 | Pixiv search result sort by bookmark count.
  6. // @icon https://www.pixiv.net/favicon.ico
  7. // @version 0.4.1
  8. // @author olOwOlo
  9. // @namespace https://olowolo.com
  10. // @homepage https://github.com/olOwOlo/script/tree/master/pixiv-search-sort
  11. // @supportURL https://github.com/olOwOlo/script
  12. // @license MIT
  13. // @match *://www.pixiv.net/search.php?*
  14. // @run-at document-start
  15. // @grant none
  16. // ==/UserScript==
  17. //
  18. /*
  19. * Copyright (c) 2017 olOwOlo
  20. * Released under the MIT License.
  21. * ***********************
  22. * ***** Release Note *****
  23. * 0.4.1 - 修复:P 站更新
  24. * 0.4.0 - P站已更新,现在只支持单页排序
  25. * 0.3.0 - 为兼容最新ECMAScript标准,使用babel与webpack处理脚本,可读性更好的源码可于Github查看
  26. */
  27. /******/ (function(modules) { // webpackBootstrap
  28. /******/ // The module cache
  29. /******/ var installedModules = {};
  30. /******/
  31. /******/ // The require function
  32. /******/ function __webpack_require__(moduleId) {
  33. /******/
  34. /******/ // Check if module is in cache
  35. /******/ if(installedModules[moduleId]) {
  36. /******/ return installedModules[moduleId].exports;
  37. /******/ }
  38. /******/ // Create a new module (and put it into the cache)
  39. /******/ var module = installedModules[moduleId] = {
  40. /******/ i: moduleId,
  41. /******/ l: false,
  42. /******/ exports: {}
  43. /******/ };
  44. /******/
  45. /******/ // Execute the module function
  46. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  47. /******/
  48. /******/ // Flag the module as loaded
  49. /******/ module.l = true;
  50. /******/
  51. /******/ // Return the exports of the module
  52. /******/ return module.exports;
  53. /******/ }
  54. /******/
  55. /******/
  56. /******/ // expose the modules object (__webpack_modules__)
  57. /******/ __webpack_require__.m = modules;
  58. /******/
  59. /******/ // expose the module cache
  60. /******/ __webpack_require__.c = installedModules;
  61. /******/
  62. /******/ // define getter function for harmony exports
  63. /******/ __webpack_require__.d = function(exports, name, getter) {
  64. /******/ if(!__webpack_require__.o(exports, name)) {
  65. /******/ Object.defineProperty(exports, name, {
  66. /******/ configurable: false,
  67. /******/ enumerable: true,
  68. /******/ get: getter
  69. /******/ });
  70. /******/ }
  71. /******/ };
  72. /******/
  73. /******/ // getDefaultExport function for compatibility with non-harmony modules
  74. /******/ __webpack_require__.n = function(module) {
  75. /******/ var getter = module && module.__esModule ?
  76. /******/ function getDefault() { return module['default']; } :
  77. /******/ function getModuleExports() { return module; };
  78. /******/ __webpack_require__.d(getter, 'a', getter);
  79. /******/ return getter;
  80. /******/ };
  81. /******/
  82. /******/ // Object.prototype.hasOwnProperty.call
  83. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  84. /******/
  85. /******/ // __webpack_public_path__
  86. /******/ __webpack_require__.p = "";
  87. /******/
  88. /******/ // Load entry module and return exports
  89. /******/ return __webpack_require__(__webpack_require__.s = 0);
  90. /******/ })
  91. /************************************************************************/
  92. /******/ ([
  93. /* 0 */
  94. /***/ (function(module, exports, __webpack_require__) {
  95.  
  96. module.exports = __webpack_require__(1);
  97.  
  98.  
  99. /***/ }),
  100. /* 1 */
  101. /***/ (function(module, exports, __webpack_require__) {
  102.  
  103. "use strict";
  104.  
  105. (function () {
  106. 'use strict';
  107.  
  108. document.addEventListener('DOMContentLoaded', function () {
  109. return sortInContainer(0);
  110. });
  111.  
  112. /**
  113. * sort in one page
  114. * @param index
  115. * @param rest
  116. */
  117. function sortInContainer(index) {
  118. var rest = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 6;
  119.  
  120. var containers = document.querySelectorAll('#js-react-search-mid > div');
  121. if (containers.length !== 0) {
  122. var container = containers[index];
  123. var itemsArray = Array.from(container.children);
  124. itemsArray.sort(function (a, b) {
  125. return getBookmarkCount(b) - getBookmarkCount(a);
  126. }).forEach(function (item) {
  127. return container.appendChild(item);
  128. });
  129. } else if (rest > 0) {
  130. myLog('Container Not Found. Rest time is ' + rest);
  131. setTimeout(function () {
  132. return sortInContainer(index, rest - 1);
  133. }, 500);
  134. }
  135. }
  136.  
  137. /**
  138. * return the bookmark-count
  139. * @param item
  140. * @returns {number}
  141. */
  142. function getBookmarkCount(item) {
  143. var bookmarkCount = item.getElementsByClassName('bookmark-count')[0];
  144. return typeof bookmarkCount === 'undefined' ? 0 : Number(bookmarkCount.text);
  145. }
  146.  
  147. var DEBUG = false;
  148. function myLog(message) {
  149. if (DEBUG) console.log(message);
  150. }
  151. })();
  152.  
  153. /***/ })
  154. /******/ ]);

QingJ © 2025

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