我喜欢Momentum(Chrome扩展程序),但由于我是Firefox用户,因此我下载扩展程序并将其调整为在Firefox上运行,并使用newtab
更改了about:config
网址但是当我打开newtab
时,它会显示页面的网址,例如file://C://user/../../some.html
。我想知道是否有办法隐藏像urginal newtab页面的网址?由于我将使用扩展供我个人使用,因此我可以使用javascript或任何其他方法
答案 0 :(得分:1)
好听听页面加载,当你检测到现在显示的网址时,然后在其上运行此代码:
var newuri = Services.io.newURI('http://www.bing.com/', null, null);
window.gBrowser.selectedTab.linkedBrowser.webNavigation.setCurrentURI(newuri);
这将它设置为bing.com,但它并不是真正的你的页面。