Disable “chrome is out of date” notification

前端 未结 6 432
天涯浪人
天涯浪人 2021-01-31 20:16

I have a touchscreen application optimised and running in a Chrome kiosk mode. It runs totally offline and due to some updates to Chrome breaking the application I\'ve had to lo

6条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-31 21:06

    We had same problem, but one of my colleagues got the answer (so far OK).

    We are using Windows so batch file in startup for start chrome with incognito kiosk and update interval.

    cd C:\Program Files (x86)\Google\Chrome\Application
    
    start chrome.exe --incognito --window-position=0,0 --kiosk --check-for-update-interval=604800 "facebook.com"
    
    exit    
    
    --check-for-update-interval= 7days we are restarting the PC every day so update never tiger.
    

    This command line switch is specified here.

提交回复
热议问题