油猴脚本
所以我有这个带有 html 代码的页面,我希望greasemonkey 将其替换为我拥有的另一个 HTML 代码。 如何做呢 ?
例如我有
<html>
<body>
<h1>Cajuda</h1>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Lagarta maritima</p>
</body>
</html>
并且我想对此进行改造:
<html>
<body>
<td title="7885" nowrap="nowrap">Ovar</td>
<td> </td>
<td title="Online" align="center" bgcolor="#ff8288">H</td>
<td title="Offline" align="center" bgcolor="#88ff88">1</td>
<td> </td>
</body>
</html>
So I have this page with the html code and I want greasemonkey to replace it by another HTML code that I have. How can it be done ?
exemple I have
<html>
<body>
<h1>Cajuda</h1>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Oliveira da serra</p>
<p>Lagarta maritima</p>
</body>
</html>
and I want to transform in this :
<html>
<body>
<td title="7885" nowrap="nowrap">Ovar</td>
<td> </td>
<td title="Online" align="center" bgcolor="#ff8288">H</td>
<td title="Offline" align="center" bgcolor="#88ff88">1</td>
<td> </td>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 greasemonkey 手册:
其余部分可用 此处。
From the greasemonkey manual:
The rest is available here.
以下是有关如何编写 Greasemonkey 脚本。
Here's a link to tutorials on How to write Greasemonkey scripts.