创建动态 Chrome 主题
我正在尝试为 Google Chrome 构建一个主题扩展,它将使用远程图像源定期更新背景图像(即图像存储在网络服务器上,而不是本地)。问题是主题不允许包含脚本元素。有什么建议如何解决这个限制吗?
I'm trying to build a theme extension for Google Chrome that will regularly update the background image using a remote image source (i.e. images are stored on a web server, not locally). The problem is that themes are not allowed to contain scripting elements. Any suggestions how to work around this restriction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果背景图像是指新标签页的背景,则可以将其替换为 html 页面(即使用扩展程序,而不是主题):http://code.google.com/chrome/extensions/override.html。
If by background image you mean the background of the New Tab page, you can replace it with an html page (using an extension, not a theme, that is): http://code.google.com/chrome/extensions/override.html.