How to Create a Google Chrome Incognito Mode Desktop Shortcut

·
9 min read

If you use Chrome’s Incognito Mode regularly, you already know the drill: open Chrome, click the three-dot menu, select New Incognito Window… every single time. It’s not a huge deal, but it adds up. Wouldn’t it be nicer to just double-click a shortcut on your desktop and land straight in Incognito? Good news, you absolutely can, and it’s easier than you’d think.

In this guide, you’ll learn how to create a dedicated Chrome Incognito desktop shortcut on both Windows and macOS, so you can skip the extra steps and get straight to private browsing. Before we dive in, though, let’s quickly cover what Incognito actually does (and doesn’t do), because there’s a common misconception worth clearing up.

What Is Chrome Incognito Mode, Really?

Chrome’s Incognito Mode opens a private browsing session that doesn’t save your browsing history, cookies, or form data on your device once you close the window. It’s great for keeping your local browsing footprint clean, like when you’re shopping for a gift on a shared computer, or you just don’t want your search history cluttering things up.

That said, Incognito is not the same as being anonymous online. Here’s what it does and doesn’t protect:

  • What it hides: Your browsing history, cookies, and form data on the local device
  • What it doesn’t hide: Your activity from your ISP, employer, school network, or the websites you visit
  • Still at risk: Your IP address is still visible to websites, and you can still pick up malware from sketchy sites

Think of Incognito as closing the blinds in your house. People inside can’t see out, but anyone outside can still see the house is there. For true anonymity, you’d want a VPN on top of that. But for everyday local privacy? Incognito does the job perfectly.

The fastest built-in way to open an Incognito window is the keyboard shortcut Ctrl + Shift + N on Windows or Cmd + Shift + N on macOS. But if you want a one-click desktop shortcut, read on.

Chrome three-dot menu open with "New Incognito window" option highlighted
A new Chrome Incognito window open, showing the dark Incognito splash screen with the spy icon

How to Create a Chrome Incognito Shortcut on Windows

On Windows, the trick is to create a desktop shortcut that launches Chrome with a special command-line flag called -incognito. This tells Chrome to open straight into Incognito mode every time you use that shortcut. There are two ways to do this: creating a brand-new shortcut from scratch, or editing an existing Chrome shortcut you already have on your desktop.

Method 1: Create a New Shortcut from Scratch

This is the cleanest approach and works great on Windows 11.

Step 1: Right-click your desktop and create a new shortcut

Right-click on an empty area of your desktop, hover over New, and click Shortcut.

Windows 11 desktop right-click context menu with New > Shortcut highlighted

Step 2: Enter the Chrome path with the -incognito flag

In the location box, type or paste the following:

"C:\Program Files\Google\Chrome\Application\chrome.exe" -incognito

If Chrome is installed in the Program Files (x86) folder instead (common on older setups), use this path:

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -incognito

Not sure which one applies to you? Try the first path. That’s where Chrome installs by default on modern 64-bit Windows systems.

Windows 11 Create Shortcut dialog with the Chrome executable path and -incognito flag entered in the location field

Step 3: Name your shortcut

Click Next, give your shortcut a name like Chrome Incognito, and click Finish.

Windows 11 Create Shortcut dialog on the naming step with "Chrome Incognito" typed in the name field

Step 4: Test it out

Double-click your new shortcut. Chrome should open directly in an Incognito window. You’ll see the dark screen with the spy icon. If it opens a regular Chrome window instead, double-check that the path in Step 2 is correct and that the -incognito flag is outside the quotation marks.

Chrome Incognito window open after launching from the new desktop shortcut

Method 2: Edit an Existing Chrome Shortcut

Already have a Chrome shortcut on your desktop? You can just tweak it instead of starting from scratch.

Step 1: Open the shortcut’s Properties

Right-click on your existing Chrome desktop shortcut and select Properties.

Windows 11 desktop right-click context menu on a Chrome shortcut with Properties highlighted

Step 2: Edit the Target field

Click the Shortcut tab if it’s not already selected. You’ll see a Target field with the path to Chrome’s executable in quotes. Click inside the box, move your cursor to the very end (after the closing quote), and add a space followed by -incognito. It should look like this:

"C:\Program Files\Google\Chrome\Application\chrome.exe" -incognito
Chrome shortcut Properties window showing the Shortcut tab with the Target field containing the -incognito flag added after the executable path

Step 3: Save and confirm

Click OK. If a UAC (User Account Control) prompt pops up asking for permission to make the change, just click Continue. It’s totally normal and won’t cause any issues.

Windows UAC permission dialog asking to confirm changes to the Chrome shortcut

Step 4: Rename the shortcut (optional but recommended)

Right-click the shortcut and choose Rename. Give it a name like Chrome Incognito so you can tell it apart from your regular Chrome shortcut at a glance.

Bonus: Open a Specific Website Directly in Incognito

Here’s a neat trick. You can make your Incognito shortcut open a specific website automatically. Just add the URL at the end of the target path, after the -incognito flag:

"C:\Program Files\Google\Chrome\Application\chrome.exe" -incognito https://www.google.com

Swap out the URL for whatever site you want, and that shortcut will drop you straight into that page in Incognito mode. Handy if you always check a specific site privately.

How to Create a Chrome Incognito Shortcut on macOS

On macOS, you can’t just right-click the Dock icon and add launch flags the way you can on Windows. Instead, you’ll use a built-in macOS tool called Script Editor to create a tiny app that launches Chrome in Incognito mode. It sounds more complicated than it is, promise.

Step 1: Open Script Editor

Click the magnifying glass icon in the top-right corner to open Spotlight, type Script Editor, and press Return. Alternatively, go to Finder > Applications > Utilities and open it from there.

macOS Spotlight search with "Script Editor" typed and the Script Editor app highlighted in results

Step 2: Create a new document

When Script Editor opens, click New Document (or press Cmd + N).

macOS Script Editor app showing the New Document button or a blank new script window

Step 3: Paste in the script

Copy and paste the following script into the editor window. This is the most reliable version. It checks whether Chrome is already running and handles both cases gracefully, so it won’t close your existing Chrome windows:

on is_running(appName)
    tell application "System Events" to (name of processes) contains appName
end is_running

set chrome_running to is_running("Google Chrome")
if chrome_running then
    tell application "Google Chrome"
        repeat with w in (windows)
            if mode of w is "incognito" then
                set index of w to 1
                tell application "System Events" to tell process "Google Chrome"
                    perform action "AXRaise" of window 1
                end tell
                activate
                return
            end if
        end repeat
    end tell
    tell application "Google Chrome"
        make new window with properties {mode:"incognito"}
        activate
    end tell
else
    do shell script "open -a /Applications/Google\\ Chrome.app --args --incognito"
end if

This script does three things: if Chrome isn’t running, it opens it in Incognito. If Chrome is already running and an Incognito window is already open, it brings that window to the front. If Chrome is running but there’s no Incognito window, it opens a new one without touching your existing tabs.

macOS Script Editor window with the Chrome Incognito AppleScript code pasted into the editor

Step 4: Save it as an Application

Go to File > Save (or press Cmd + S). In the Save dialog:

  1. Give it a name like Chrome Incognito
  2. Set the Where location to Desktop
  3. Change the File Format to Application
  4. Click Save
macOS Script Editor Save As dialog with the name "Chrome Incognito", location set to Desktop, and File Format set to Application

You’ll now see a new icon on your desktop. Double-click it and Chrome will open in Incognito mode.

macOS desktop showing the newly saved Chrome Incognito application icon with the default Script Editor icon

Step 5: Give It the Chrome Icon (Optional)

By default, your new shortcut app will have the Script Editor icon, which isn’t exactly pretty. Here’s how to swap it for the proper Chrome icon:

  1. Open Finder and go to your Applications folder
  2. Right-click on Google Chrome and select Get Info (or press Cmd + I)
  3. In the Get Info window, click the Chrome icon in the top-left corner. It’ll get a blue highlight when selected
  4. Press Cmd + C to copy it
  5. Now close that window and do Get Info on your new Chrome Incognito app on the desktop
  6. Click the Script Editor icon in the top-left corner of that Get Info window
  7. Press Cmd + V to paste the Chrome icon
change mac icon
macOS Get Info window for the Chrome Incognito app showing the icon in the top-left corner highlighted in blue, ready to be replaced
macOS Get Info window for Google Chrome in the Applications folder, with the Chrome icon in the top-left selected

Your desktop shortcut will now sport the familiar Chrome icon, and no one will be the wiser that it’s actually a tiny script under the hood.

Tips and Troubleshooting

Common Issues

Problem: The shortcut opens a regular Chrome window instead of Incognito

This almost always means the -incognito flag is in the wrong place in the Target field. Make sure it appears after the closing quotation mark around the file path, with a space before it, like this:

"C:\Program Files\Google\Chrome\Application\chrome.exe" -incognito

Not like this (wrong):

"C:\Program Files\Google\Chrome\Application\chrome.exe -incognito"

Problem: Windows says it can’t find the file when you double-click the shortcut

Chrome might be installed in a different location on your machine. Open File Explorer, navigate to C:\Program Files\Google\Chrome\Application\ or C:\Program Files (x86)\Google\Chrome\Application\, and check which one contains chrome.exe. Use that path in your shortcut.

Problem: The macOS script app says it doesn’t have permission to control Chrome

macOS may need you to grant Script Editor (or the saved app) permission to control other applications. Go to System Settings > Privacy & Security > Automation and make sure your script app has permission to control Google Chrome.

macOS System Settings Privacy & Security > Automation page showing the Chrome Incognito app with permission to control Google Chrome enabled

Pro Tips

  • Fastest method on Windows: Skip the shortcut entirely and just press Ctrl + Shift + N while Chrome is open. It’s the quickest way to pop open an Incognito window on the fly.
  • Pin it to the taskbar: Once your Incognito shortcut is working, right-click it and choose Pin to taskbar for even faster access. No need to minimize your windows to find the desktop icon.
  • Want full separation, not just privacy? If you want to keep separate bookmarks, extensions, and login sessions (not just hide your history), consider creating a separate Chrome profile instead. It keeps everything isolated between sessions while saving your data, which Incognito doesn’t do.
  • Works on other Chromium browsers too: The same -incognito flag works on browsers like Microsoft Edge (use -inprivate instead) and Brave. Just point the shortcut to the correct executable path for that browser.

Wrapping Up

Once your shortcut is set up, jumping into Incognito mode is just a double-click away. No more digging through menus every time. The Windows method is quick and straightforward, and the macOS AppleScript route is a little more involved but totally worth the five minutes it takes. Just remember: Incognito keeps your local browsing private, but it’s not a cloak of invisibility online. If you need real anonymity, pair it with a trustworthy VPN.

If you run into any snags along the way, drop a comment below and we’ll help you sort it out!