More content height for tweetdeck

Make tweetdeck content have more height

  1. // ==UserScript==
  2. // @name More content height for tweetdeck
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @icon https://tweetdeck.twitter.com/favicon.ico
  6. // @description Make tweetdeck content have more height
  7. // @author mmorgat
  8. // @match https://tweetdeck.twitter.com/*
  9. // @grant none
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. let content = document.createElement('style'); //Create custom <style> HTML element
  14. content.innerText = '.js-column .js-show-detail .media-item{height:500px !important;}'; //Set content of script
  15. document.getElementsByTagName('head')[0].appendChild(content); //Append the HTML element at the end of the page
  16. })();

QingJ © 2025

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