我想将www.aaa.com输入url,然后输入一个可以加载www.aaa.com的greasemonkey脚本,还可以在www.aaa.com下面加载www.bbb.com。您应该能够为www.bbb.com定义网址。
我的概念代码:
// ==UserScript==
// @name google-wired
// @namespace test
// @include www.google.com
// ==/UserScript==
var secondURL = 'http://www.wired.com';
document.body.appendChild(HTML of second URL)
输出将是有线的启动页面顶部的谷歌启动页面。