像 ActiveInbox 这样的程序是用什么语言编写的?
我想写一些类似于 ActiveInbox 的内容。
除了原始的 ActiveInbox 之外,我还需要添加对收到的电子邮件执行一些操作的逻辑。
像 ActiveInbox 这样的程序是用什么语言编写的?
谢谢
I want to write something similar to ActiveInbox.
In addition to original ActiveInbox, I need to add logic that will perform some actions on the emails that come.
What language(s) are programs like ActiveInbox written in?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Activeinbox 是一个浏览器插件,用 Javascript 编写。内部查看很简单:下载 xpi(插件的 Firefox 版本)。 xpi 文件是一个 zip 文件,因此请使用您选择的 zip 文件管理器打开它。
之后,您应该前往 Mozilla 开发者网站 或 Chrome 扩展程序开发教程,了解如何编写 Firefox/Chrome 插件。
Activeinbox is a browser plugin, written in Javascript. It's easy to have a look inside: download the xpi (the Firefox version of the plugin). An xpi file is a zipfile, so open it with your zipfile manager of choice.
After that you should head over to Mozilla's developer site or a Chrome extension development tutorial to learn how to wite a Firefox/Chrome plugin.
扩展可以在 Chrome 和 Firefox 上用纯 Javascript 编写。
Extensions can be written in pure Javascript on Chrome and Firefox.