我有一个 Chrome 应用(一个网站),我想让它在 Windows 10 的后台运行。这意味着它不会最小化,而是作为后台服务/在任务栏中运行。我该如何实现?谢谢
答案1
你有没有考虑过chrome 无头?
chrome \
--headless \ # Runs Chrome in headless mode.
--disable-gpu \ # Temporarily needed if running on Windows.
--remote-debugging-port=9222 \
https://www.chromestatus.com # URL to open. Defaults to about:blank.