如何在firefox / chrome javascript插件中存储数据和添加按钮
我是java脚本/XUL开发的初学者,如果需要的话还可以使用c++。
我有 2 个基本问题,需要一些指导。
背景:我喜欢构建简单的插件,按日期安排要执行的操作。 1.我可以存储数据(日期+ ids)以便插件可以读取和写入它,有什么限制? 2.向gmail添加按钮的最佳方法是什么,或者你管,油猴是唯一的方法吗?
谢谢你的帮助。
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
im beginner to java script / XUL development and c++ if needed .
i have 2 basic questions and i need some directions .
background : i like to build simple plugin that schedule by date actions to preform.
1. can i store data ( dates + ids ) so the plug in could read and write to it , what is the limitations ?
2. what is the best way to add button to gmail , or you tube , is Grease monkey is the only way ?
Thanks for helping .
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要执行自动日期操作,您需要自己的
Date()
函数和这些链接将帮助您:https://developer.mozilla.org/en/CSS/Getting_Started/XUL_user_interfaces
https://wiki.mozilla.org/XUL:Specs:DateTimePickers 在 XUL javaScript 中写入任何文件非常简单:
https://developer.mozilla。 org/en/Code_snippets/File_I%2F%2FO
http://puna.net.nz/archives/Code/Mozilla%20XUL%20LOG%20-%20read%20local%20files%20and%20write%20local%20files.htm
以上链接解释得非常清楚,可以阅读和使用;在目录或本地计算机中以任何位格式写入任何类型的文件,没有限制。
我不知道 Grease Monkey 但在 XUL 中使用 ca 使用 DOM 函数来创建按钮和按钮动态元素。
https://developer.mozilla.org/en/XUL/button
http://www.borngeek.com/firefox/toolbar-tutorial/chapter-6/
To perform automatic date operations, you need your own
Date()
function & these links wil help you:https://developer.mozilla.org/en/CSS/Getting_Started/XUL_user_interfaces
https://wiki.mozilla.org/XUL:Specs:DateTimePickers
Regarding read & write to any files in XUL javaScript is pretty simple:
https://developer.mozilla.org/en/Code_snippets/File_I%2F%2FO
http://puna.net.nz/archives/Code/Mozilla%20XUL%20LOG%20-%20read%20local%20files%20and%20write%20local%20files.htm
The above links explained very clearly to read & write any type of files in any bit format in a directory or in a local machine, there is no limitation.
I have no idea baout Grease Monkey but in XUL use ca use DOM function to create buttons & elements dynamically.
https://developer.mozilla.org/en/XUL/button
http://www.borngeek.com/firefox/toolbar-tutorial/chapter-6/