Follow along with the video below to see how to install our site as a web app on your home screen.
Nota: this_feature_currently_requires_accessing_site_using_safari
@echo off
start https://www.google.com
start https://www.wikipedia.org
start https://www.github.com
#!/bin/bash
# Lista de sitios web
sitios=(
"https://www.google.com"
"https://www.wikipedia.org"
"https://www.github.com"
)
# Abrir cada sitio web
for sitio in "${sitios[@]}"; do
xdg-open "$sitio" # Usa 'open' en macOS
done
@echo off
for /l %%i in (1,1,10) do start http://www.ejemplo.com
@echo off
for /l %%i in (1,1,10) do start chrome.exe --incognito http://www.ejemplo.com