Chrome相关
1
2
|
chrome://webrtc-internals/ 监测webrtc数据
chrome://flags/ 启用关闭chrome实验室功能
|
nw.js相关
添加chromium-args可绕过https自签名问题
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"name":"static",
"version":"1.0.0",
"description":"",
"main":"index.html",
"author":"",
"license":"ISC",
"chromium-args": "--enable-file-cookies --allow-running-insecure-content --ignore-certificate-errors",
"window": {
"title": "node-webkit demo",
"icon": "hospital72.png",
"toolbar": true,
"frame": true,
"width": 800,
"height": 500
}
}
|