Forrest logo
back to context overview

chromium

List of commands for chromium:

  • chromium:ai:77318 i need a switch for chromium to save cookies permanently
    $ chromium --user-data-dir=${directory} --disk-cache-dir=/path/to/cache --keep-cookies-always
    try on your machine
    explain this command
  • chromium:tldr:113c0 chromium: Open with a DevTools window for each tab opened.
    $ chromium --auto-open-devtools-for-tabs
    try on your machine
    explain this command
  • chromium:tldr:48d93 chromium: Open in incognito mode.
    $ chromium --incognito ${example-com}
    try on your machine
    explain this command
  • chromium:tldr:a5278 chromium: Use a proxy server.
    $ chromium --proxy-server="${socks5:--hostname:66}" ${example-com}
    try on your machine
    explain this command
  • chromium:tldr:a57be chromium: Open in application mode (without toolbars, URL bar, buttons, etc.).
    $ chromium --app=${https:--example-com}
    try on your machine
    explain this command
  • chromium:tldr:abc46 chromium: Open a specific URL or file.
    $ chromium ${select}
    try on your machine
    explain this command
  • chromium:tldr:ade71 chromium: Open without CORS validation (useful to test an API).
    $ chromium --user-data-dir=${path-to-directory} --disable-web-security
    try on your machine
    explain this command
  • chromium:tldr:baf5a chromium: Open in a new window.
    $ chromium --new-window ${example-com}
    try on your machine
    explain this command
  • chromium:tldr:dca42 chromium: Open with a custom profile directory.
    $ chromium --user-data-dir=${path-to-directory}
    try on your machine
    explain this command
back to context overview