Greasy Fork 支持简体中文。

botHelpStatistics

add user to database and show rating on tik-tok, twitter

目前為 2023-09-14 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name botHelpStatistics
  3. // @description add user to database and show rating on tik-tok, twitter
  4. // @author ka-pex
  5. // @license MIT
  6. // @version 0.13
  7. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js
  8. // @include https://www.tiktok.com/foryou
  9. // @namespace ka-pex
  10. // ==/UserScript==
  11.  
  12. var func = function () {
  13. //hide
  14. $('.tiktok-t4zcgw-DivHeaderLeftContainer').hide();
  15. };
  16.  
  17. //блокує історію зверху
  18. $('.tiktok-t4zcgw-DivHeaderLeftContainer').hide();
  19.  
  20. $(document).ready(function () {
  21. func();
  22. setInterval(func, 1000);
  23. });