谁科普下browser.HTML?

阅读:3886回复:6
楼主#
用HTML绘制浏览器UI?
2017-02-20 16:46
写私信
1楼#
browser.html 是一个实验性的项目,用于证明一个概念:使用 HTML 重新实现 Firefox UI ,并作为一个应用程序。它是基于浏览器的 API ,并以浏览器的方式和系统的应用工作。即使它包括标签,如vbox,hbox,空格等等这一切都是基于 HTML 实现的。



taoww 有测试体验:https://www.firefox.net.cn/read-52927
Firefox More than meets your experience
2楼#
fang5566:browser.html 是一个实验性的项目,用于证明一个概念:使用 HTML 重新实现 Firefox UI ,并作为一个应用程序。它是基于浏览器的 API ,并以浏览器的方式和系统的应用工作。即使它包括标签,如vbox,hbox,空格等...回到原帖
是不是意味着可高度定制UI的可能?
2017-02-20 20:36
写私信
3楼#
谷歌大法好:是不是意味着可高度定制UI的可能?回到原帖
目前还不太清楚,理论上可以的吧,因为是用HTML CSS 和 js 写的界面。
Firefox More than meets your experience
2017-02-20 23:01
写私信
4楼#
虽然是 html + css + js
但是一样有办法让你不好改
比如混淆加预编译,然后打成一个私有格式的压缩包,再辅以签名验证
还可以美其名曰“优化加载性能,防止恶意软件篡改”
2017-02-21 11:36
写私信
5楼#
aaaa007cn:虽然是 html + css + js
但是一样有办法让你不好改
比如混淆加预编译,然后打成一个私有格式的压缩包,再辅以签名验证
还可以美其名曰“优化加载性能,防止恶意软件篡改”
回到原帖
反正总得迈出一步 不过未来webextensions下也是可以改界面的 只是很多不会改而已
http://pcxfirefox.wordpress.com/
2017-02-21 20:12
写私信
6楼#
pcxfirefox:反正总得迈出一步 不过未来webextensions下也是可以改界面的 只是很多不会改而已回到原帖
https://blog.mozilla.org/addons/2017/02/16/the-road-to-firefox-57-compatibility-milestones/#comment-223542
There are some UI elements that are security sensitive, like the identity box, but that's not the main reason that UI customization is being significantly restricted. The main reason is that add-ons that do this are very dependent on the UI begin a certain way, and breaking easily when it doesn't. This means making big UI changes in Firefox (like Australis) lead to lots of anger from users and add-on developers, and add-ons end up being inevitably abandoned every time. Restricting APIs in a way that make them more future-proof largely avoids these problems. It's a trade-off, of course, and some great add-ons can't be implemented in the same way, or at all, but we believe it's a net positive.

we'll see