Safari 扩展,流畅的应用程序
我编写了一个简单的 Safari 扩展,用于捕获 RSS 按钮的点击地址栏(调用 feed:// 协议)并重定向到 Google Reader 而不是 Safari 的 feed 阅读器。但是,如果用户将 Fluid 应用(可打开 Google 阅读器的应用)设置为其默认源阅读器拦截不起作用。
是否有任何已知的方法来捕获发送到不同应用程序的请求?该扩展当前位于 document.beforeload()
上,但如果在新的“应用程序”中打开文档,当然永远不会到达它。
我可以捕捉其他事件吗?我还没有找到扩展程序可以捕获的事件的完整列表。
谢谢。
I've written a simple extension for Safari that captures clicks on the RSS button in the address bar (calls to the feed:// protocol) and redirects to Google Reader instead of Safari's feed reader. If, however, the user has a Fluid app (one that opens Google Reader) set as their default feed reader the intercept doesn't work.
Is there any known way to capture a request that's being sent to a different app? The extension currently keys on document.beforeload()
, but if the document is being opened in a new "app", it's never reached, of course.
Is there a different event I can catch? I haven't found a comprehensive list of events that extensions can catch.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扩展是 Safari 的一部分,而不是 webkit,因此 safari 扩展在嵌入 webkit 的其他应用程序(如 Fluid)中不可用。
Extensions are a part of Safari not webkit, so safari extensions aren't available in other apps that embed webkit (like Fluid).