TPC Filter

script to remove posts of a particular seller who sells fake stuff

  1. // ==UserScript==
  2. // @name TPC Filter
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description script to remove posts of a particular seller who sells fake stuff
  6. // @author You
  7. // @match https://tipidpc.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. $("li:contains('lineage')").remove();
  16. })();