多个 Greasemonkey 元区块
我正在尝试为网站层次结构编写一个 Greasemonkey 脚本,以便对 http: 进行大量代码修改: //www.foo.com/*,然后是 http://www 的更具体内容.foo.com/bar/*,还有 http://www.foo .com/foobar/*。
无论如何,我是否可以在同一个脚本中编写所有这些内容,或者我是否必须制作多个?
I'm trying to write a Greasemonkey script for a hierarchy of websites such that I have a bunch of code modifications for http://www.foo.com/*, then more specific ones for http://www.foo.com/bar/*, and still others for http://www.foo.com/foobar/*.
Is there anyway for me to write all these in the same script, or do I have to make multiple?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,只需使用这三个 @include,然后在您的用户脚本中执行类似的操作(取决于脚本的具体情况):
Yes, just use those three @includes, then in your user script do something like (depends on specifics of script):
有人向我展示了在不同子位置处理不同函数的一个巧妙技巧,那就是使用函数名称的全局目录作为一种虚拟交换机......
One nifty trick I was shown for dealing with different functions at different sub-locations is to use the global directory of function names as a sort of virtual switchboard...