使用Greasemonkey,是否可以使脚本的某些部分适用于某些站点,而其他部分适用于不同的站点?
我想这样做的原因是我正在为 meebo.com 编写一个脚本,其中涉及更改背景并用 CSS 替换一些图片。我想添加其他网站(即 Gmail、Google 日历等)的链接。是否可以使用一个 Greasemonkey 脚本来完成此操作? (我认为这是一个足够普遍的问题,可以排除我的实际代码,但如果它有帮助,只需留下评论即可。)
The reason I want to do this is that I'm writing a script for meebo.com that involves changing the background and replacing some pictures with css. I'd like to add links to it from other sites (namely Gmail, Google Calendar, etc.) Is it possible to accomplish this with one Greasemonkey script? (I think this is a general enough question to exclude my actual code but if it would help, just leave a comment saying so.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我认为传统的方法是编写两个脚本,一个只包含
@include
的 meebo.com(并更改背景图像),另一个只包含@include
的http://*
或任何其他 URL 集(并添加指向 meebo 的链接)。但是,如果您打算只编写一个脚本,则可以使用一系列
if
语句来实现相同的效果。那看起来像这样:Well, I think the conventional method would be to write two scripts, one that only
@include
's meebo.com (and changes the background image) and another that@include
'shttp://*
or whatever set of other URLs (and adds a link to meebo).But if you're set on writing only a single script, you could use a series of
if
statements to accomplish the same effect. That would look something like this: