Old Twitter

Say NO to circles!

  1. // ==UserScript==
  2. // @name Old Twitter
  3. // @name:ru Старый Twitter
  4. // @namespace https://dasefern.com/
  5. // @version 1.0
  6. // @description Say NO to circles!
  7. // @description:ru Долой круглые аватарки!
  8. // @author Kesantielu Dasefern
  9. // @match *://twitter.com/*
  10. // ==/UserScript==
  11.  
  12. function removeEdge() {
  13. document.body.classList.remove('edge-design');
  14. }
  15.  
  16. (function() {
  17. 'use strict';
  18. var observer = new MutationObserver(function(m) {
  19. removeEdge();
  20. });
  21. observer.observe(document.body, { attributes: true});
  22. })();

QingJ © 2025

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