如何使用nodejs禁用Chrome的会话恢复警告?

时间:2016-08-10 10:06:36

标签: node.js windows google-chrome chromium

如何通过NodeJS在Windows中重新启动Chromium / Google Chrome(kiosk模式),以便正常重启时启动浏览器,因为它是普通人使用的? (当我在重新启动Chromium / Google Chrome时每次使用nodeJS时,一直向我显示右上角的丑陋/烦人/致命弹出窗口)

NodeJS:告诉chrome关闭

enter image description here

NodeJS:告诉chrome现在开始:在每一次启动时它都会在右上角打开那个丑陋的弹出窗口,如果没有人参与,就无法删除它

enter image description here

var wait_seconds = null;

function reboot_chrome() {
  // taskkill /f /im chrome.exe
  run_cmd( "taskkill", ["/f", "/im", "chrome.exe"], function(text) { 
    console.log (text);
  });

  //$ cat C:/Python27/run.bat:
  //@echo off
  //@start /b cmd /c "C:\Users\tpt\AppData\Local\Chromium\Application\chrome.exe" --kiosk

  wait_seconds = setTimeout(function() {
    run_cmd("C:\\Python27\\run.bat", [], function(text){
      console.log(text);
    });
  }, 20000);

}

1 个答案:

答案 0 :(得分:4)

您可以使用--incognito--disable-session-crashed-bubble --disable-infobars个开关,但浏览器的行为不会像预期的那样。

最干净的方法是更改​​用户个人资料首选项中的exit_type。这是一个很好的例子:

var fs   = require("fs");
var path = require("path");
var exec = require("child_process").exec;

//----------------------------------------------------
function restartChrome(){
    stopChrome();
    setTimeout(startChrome, 20000);
}

//----------------------------------------------------
function startChrome(){
    // change this path to your application path
    exec('"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome" --kiosk')
}

//----------------------------------------------------
function stopChrome(){
    exec("taskkill /IM chrome.exe /f");
    setExitType();
}

//----------------------------------------------------
function setExitType(callback){
    // change this path to your session preferences path
    var preferencesPath = path.join(process.env["USERPROFILE"], "AppData/Local/Google/Chrome/User Data/Default/Preferences");

    fs.readFile(preferencesPath, "utf8", function(err, data){
        if (err) { return callback && callback(err); }

        var txt = data.replace(/exit_type":"Crashed/g,   'exit_type":"None')
                      .replace(/exited_cleanly":false/g, 'exited_cleanly":true');
        fs.writeFile(preferencesPath, txt, "utf8", callback);
    });
}

restartChrome();

请记住调整注释中标记的应用程序和首选项文件的路径。