Greasy Fork is available in English.

Fuck天猫

天猫没有差评, 所以开发出这个脚本, 屏蔽淘宝下的天猫搜索结果, 还我一个干净的淘宝。github:https://github.com/Ahaochan/Tampermonkey,欢迎star和fork。

  1. // ==UserScript==
  2. // @name Fuck天猫
  3. // @namespace https://github.com/Ahaochan/Tampermonkey
  4. // @version 0.0.1
  5. // @description 天猫没有差评, 所以开发出这个脚本, 屏蔽淘宝下的天猫搜索结果, 还我一个干净的淘宝。github:https://github.com/Ahaochan/Tampermonkey,欢迎star和fork。
  6. // @author Ahaochan
  7. // @include http*://*.taobao.com*
  8. // @match https://s.taobao.com
  9. // @supportURL https://github.com/Ahaochan/Tampermonkey
  10. // @require https://cdn.bootcdn.net/ajax/libs/jquery/2.2.4/jquery.min.js
  11. // @run-at document-end
  12. // ==/UserScript==
  13.  
  14. (function ($) {
  15. 'use strict';
  16. setInterval(function () {
  17. $('.icon-service-tianmao').closest('div.item').remove();
  18. }, 1000);
  19. })(jQuery);