// ==UserScript== // @name 新浪新闻查看全文 // @version 0.1.0001 // @description 让新浪新闻可以有滚动条,从而看到底部被app广告遮挡的内容 // @author CWBeta // @include http*zx.sina.cn/* // @icon https://www.google.com/s2/favicons?domain=sina.cn // @namespace https://greasyfork.org/users/670174 // @downloadURL none // ==/UserScript== (function() { 'use strict'; console.log("【新浪新闻查看全文】运行中!") var style = document.createElement("style"); style.type = "text/css"; var cssString = ".s_card {overflow:scroll !important}" try { style.appendChild(document.createTextNode(cssString)); } catch(ex) { style.styleSheet.cssText = cssString;//针对IE } var head = document.getElementsByTagName("head")[0]; head.appendChild(style); })();