🏠 返回首頁 

Greasy Fork is available in English.

####天猫

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

  1. // ==UserScript==
  2. // @name ####天猫
  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. (function ($) {
  14. 'use strict';
  15. setInterval(function () {
  16. $('.icon-service-tianmao').closest('div.item').remove();
  17. }, 1000);
  18. })(jQuery);