Twitter hide content warning appeal message

Hide that annoying box.

当前为 2021-12-20 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Twitter hide content warning appeal message
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Hide that annoying box.
  6. // @author You
  7. // @match https://twitter.com/*
  8. // @icon https://www.google.com/s2/favicons?domain=twitter.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. /* jshint esversion: 6 */
  13.  
  14. (function() {
  15. 'use strict';
  16. setInterval(function ()
  17. {
  18. document.querySelectorAll('a[href*="appeal_tweet_warning"]').forEach(node => node.closest('div.r-14gqq1x').remove());
  19. }, 500);
  20. })();