chrome:// 类似于 Internet Explorer 中的 URL
我再次在努力将 Firefox 扩展移植到 Internet Explorer 7、8 和 9。
我最近的问题是 FF 扩展代码大量使用对“chrome://...”url 的 AJAX 调用(它以这种方式获取 .html 文件,然后在页面上显示 HTML)。
IE 有没有办法访问“chrome://”之类的 URL?或者 - 更一般地说 - 有什么方法可以进行 AJAX 调用来检索作为扩展的一部分的 HTML 文件的内容(并且无法在线访问)?
多谢!
汤姆
once again, I'm struggling with porting a Firefox extension to Internet Explorer 7, 8 and 9.
My most recent problem is that the FF extension code makes heavy use of AJAX calls to "chrome://..." urls (it fetches .html files that way and then displays the HTML on the page).
Is there any way in IE to access "chrome://"-like URLs? Or - more generally - is there any way I can make an AJAX call to retrieve contents of a HTML file that is a part of the extension (and is not accessible online)?
Thanks a lot!
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要 res:// 方案。此文档是.net特定的,但它为您提供了如何使用该协议的基础知识。
You want the res:// scheme. This doc is .net specific, but it gives you the basics of how the protocol is used.