我如何编写一个插件来读取 Firefox 书签
我熟悉基本的 FF 插件开发,并创建了一个“测试”工具栏按钮。现在,当我单击此按钮时,我希望我的插件能够读取 FF 书签。就这么简单。
现在我已经花了3天了。阅读过无数的教程、论坛和博客。已经完成了官方的 FF 插件开发教程,但内容很混乱。我不知道在哪里可以找到这些信息。
我所需要的只是方法/函数的 API 引用,可以从插件代码内部调用这些方法/函数来读取 FF 书签...
I'm familiar with basic FF addon development and have created a "test" toolbar button. Now when I click on this button I want my addon to read FF bookmarks. As simple as that.
Now I've spent 3 days. Have read uncountable tutorials, forums and blogs. Have gone through official FF addon development tutorials, but its a big mess. I'm not sure where to look for this info.
All I need is the API references of the methods/functions which can be called from inside an addon code to read FF bookmarks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
https://developer.mozilla.org/En/Code_snippets/Bookmarks
https://developer.mozilla.org/En/Code_snippets/Bookmarks
对于 Firefox 3:
https://developer.mozilla.org/en/Places
这并不难。最困难的部分可能是找出 sql lite 数据库位于用户计算机上的位置。
For Firefox 3:
https://developer.mozilla.org/en/Places
Its not that hard. The hardest part is probably finding out where the sql lite database is located on users computer.