识别网页上的视频
我正在尝试编写一个 Firefox 扩展程序,当用户在网页上右键单击视频(youtube/vimeo)属性(路径等)时,它可以获取视频(youtube/vimeo)属性(路径等)。
我发现问题是右键单击会给播放器带来本机菜单系统。
任何指针都会非常有帮助。
谢谢。
I am trying to code a Firefox extension, that can get the video (youtube/vimeo) property (path, etc.) when a user right-clicks on it on a web page.
The problem, i see is right-click brings menu system native to the player.
Any pointer would be really helpful.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为视频播放器正在使用驻留在 Flash 嵌入对象内的 Flash。 该对象与 XUL 无关,并且不能由 Firefox 中的任何扩展来操作。 你真正想做的是对Flash进行扩展,但你做不到。
我能看到的唯一可能的解决方案是使用 XUL“堆栈”对象覆盖 Flash 对象本身,并将原始 Flash 对象作为堆栈对象的子对象。
That is because the video player is using flash which reside inside the flash embeded object. This object has nothing to do with XUL and cannot be manipulated with by any extension in firefox. What you really are trying to do is to make an extension to flash which you cannot.
The only possible solution I can see is to override the flash object itself with an XUL "stack" object and have the original flash object as a child to the stack object.