好吧,我会尽量让事情简单,不要太含糊。我想更改网页上的一行代码,以防出现预览窗格。
原始代码行
<div id="previewpane" class="previewpane" sytle="height: 139px;">
我想用
<div id="previewpane" class="previewpane previewpane-hide" style="height:139px;">
我以前写过一个Greasemonkeyscript,但不幸的是,我很难将从该脚本学到的技术应用到这个新脚本中,因此这篇文章。
干杯
-克里斯
最佳答案
那很容易。这是一个完整的脚本,应该可以工作(更改include行)。
// ==UserScript==
// @name Easy Page tweaker
// @description Hides pane?
// @include http://stackoverflow.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js
// ==/UserScript==
$("#previewpane").addClass ("previewpane-hide");
关于html - Firefox 4中的Greasemonkey脚本,想要更改网页上的一行代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5670868/