Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

browser for developers

Marwen Labidi answered on March 27, 2023 Popularity 9/10 Helpfulness 1/10

Contents


More Related Answers

  • how to become a web developer
  • best IDE for web Developers
  • best frontend web development tools
  • best browser for programmers

  • browser for developers

    0

    2. Auto-start DevTools

    To start development, you normally need to launch your browser (perhaps in incognito mode), open DevTools, and navigate to a local URL. The whole process can be automated in a single click by adding options to the browser launch command.

    It’s best to create a new shortcut or script to launch in development mode then, for Google Chrome add:

    --incognito to start in incognito mode

    --auto-open-devtools-for-tabs to start DevTools

    and place the testing URL at the end, e.g. http://localhost:8000/

    On Windows devices, a shortcut could therefore point to:

    "C:\Program Files\Google\Chrome\Application\chrome.exe" --incognito --auto-open-devtools-for-tabs http://localhost:8000

    Other useful Chrome switches include:

    --allow-insecure-localhost to ignore SSL errors on localhost domains

    --disable-extentions to start without extensions which could possibly affect rendering, e.g. ad blockers

    --window-size=, to set an initial window size

    --window-position=, to set an initial window position

    --user-data-dir="

    Popularity 9/10 Helpfulness 1/10 Language shell
    Source: Grepper
    Tags: browser shell
    Link to this answer
    Share Copy Link
    Contributed on Mar 27 2023
    Marwen Labidi
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.