Colorful Weibo

weibo script

  1. // ==UserScript==
  2. // @name Colorful Weibo
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.1
  5. // @description weibo script
  6. // @author You
  7. // @match https://weibo.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=weibo.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. // Your code here...
  16. document.querySelector("title").nextSibling.remove();
  17. })();