How to Fix Google Docs Bookmarks Opening the Wrong Account (Multiple Accounts Guide)
You know the drill. You're at work, you open a Google Doc, you bookmark it for later, and then, boom, next time you click that bookmark, Google takes you to the wrong account. Now you're staring at a "You don't have access" error, doing the whole account-switching dance... again. Every. Single. Time.
This is one of the most quietly frustrating things about using Google with multiple accounts, and the worst part is Google doesn't exactly make it obvious why it's happening or how to fix it.
First, Why Is This Even Happening?
Okay so here's the thing Google does that nobody tells you about.
When you sign into more than one Google account in the same browser, Google quietly assigns each account a number. Your first account gets labeled 0, your second account gets 1, your third gets 2, and so on.
Your primary account, the one you signed into first, is always account 0. This is really important, so burn that into your brain for a second.
Now, when you open a Google Doc, look at the URL. It looks something like this:
https://docs.google.com/document/d/some-long-random-id/edit
See anything in there that says which account should open this? Yeah, me neither. There's nothing. The URL has no idea which of your accounts it belongs to. So when you bookmark it and click it later, Google just goes, "Okay, no clues here, I'll just use account number 0" and account 0 is almost always your personal account, because that's probably the one you had first.
That's the whole mystery. it's just defaulting to your primary account because the URL doesn't tell it to do anything else.
Now let's fix it.
Fix #1: Force the Right Account in the URL
This is the fastest fix
Remember those account numbers Google assigns? You can actually put that number directly into the URL, and Google will respect it. It looks like this:
Before (what your bookmark probably looks like):
https://docs.google.com/document/d/2zJkwnop5BTmjKKaRn/edit
After (what it should look like):
https://docs.google.com/document/u/2/d/KzJkwnop5BTmjKKaRn/edit
See that /u/2/ that got added? That's telling Google: "Hey, open this with account number 1." If your work account is account 1, it'll open correctly every single time.
How do I know which number my work account is?
Easy. While you're logged into Google, go to this link:
https://myaccount.google.com
Look at the URL in your browser's address bar. It'll say something like /u/0/ or /u/1/ in there. That number is your account index. Take note of it.
You can also just try clicking your profile picture on any Google page — it'll show you all your signed-in accounts in a dropdown. The first one listed is account 0, the second is account 1, etc.
How do I update my existing bookmarks?
In Chrome or Edge:
- Go to your bookmarks manager (press
Ctrl + Shift + O) - Find the bookmark you want to fix
- Right-click it → Edit
- In the URL field, add
/u/1/(or whatever your work account number is) right afterdocs.google.com - Save it
Fix #2: Use a Separate Browser Profile for Work
Modern browsers like Chrome, Edge, and Firefox all let you create completely separate browser profiles. Think of each profile like a different person using the browser, it has its own bookmarks, its own passwords, its own cookies, its own login sessions. They don't interfere with each other at all.
The idea is simple:
- Profile 1 (Work): Sign in only with your work Google account
- Profile 2 (Personal): Sign in only with your personal Google account
Now there's no confusion. Your work profile only knows about your work account. Any bookmark you make in your work profile opens in your work account. Done. No more switching, no more /u/1/ tricks needed.
How to set this up in Chrome:
- Click your profile picture/avatar in the top right corner of Chrome
- Scroll down and click "Add" (or "Manage profiles" → "Add profile")
- Give it a name like "Work" and pick a color/icon
- A new Chrome window will open, sign into Google with your work account here
- That's it. This window is now permanently your work window.
You can now run both profile windows at the same time. Work stuff in one window, personal stuff in the other. Bookmarks you create in each window stay in that profile.
How to do it in Microsoft Edge:
- Click your profile picture in the top right
- Click "Add profile"
- Follow the setup wizard and sign in with your work account
Edge even has a feature called "Work profile" built specifically for this — it integrates with Microsoft and Google Workspace accounts nicely.
How to switch between profiles:
Just open a new window from the correct profile. You can right-click the Chrome/Edge icon in your taskbar and you'll see your profiles listed there. One click opens a new window in that profile.
Fix #3: Use Two Different Browsers for Work and Personal
This is the simpler, lower-tech version of Fix #2. Instead of using profiles within one browser, you just use entirely separate browsers.
For example:
- Chrome → only for work (sign into only your work Google account here)
- Edge or Firefox → only for personal (sign into only your personal Google account here)
Fix #4: Sign In With Your Work Account First (Make It the "Default")
Google always defaults to whichever account you signed in with first. That account gets the coveted account 0 spot and becomes your automatic default everywhere.
So if your personal account is account 0 right now, it's probably because you signed into that one first a long time ago. The fix? Sign in with your work account first instead.
How to do it:
- Sign out of all your Google accounts. (Go to Gmail or any Google page → click your profile pic → "Sign out of all accounts")
- Sign back in, but this time, sign in with your work account first
- Then sign in with your personal account second
Now your work account is account 0. It becomes the default. Any Google link without a /u/N/ in it will now open in your work account.
The catch:
This is a little fragile. If you ever sign out of all accounts again and sign back in the wrong order, your personal account becomes 0 again. Also, making your work account the default might cause annoyances the other way, like YouTube auto-opening in your work account.
So this fix works best if your work account is truly your "main" account and you don't mind everything defaulting to it. Otherwise, Fix #1 or Fix #2 are more reliable.
Fix #5: Use Google Drive as Your Bookmark System Instead
This one's a bit of a mindset shift, but hear me out — instead of using browser bookmarks for Google Docs and Sheets, what if you just... used Google Drive itself as your bookmark system?
Here's the idea:
- Open Google Drive while signed into your work account
- Navigate to
drive.google.com/u/1(using your work account's index number) - Right-click any file → "Add to Starred", or create a shortcut to it in your Drive
Now when you want to access that document, you go to your Starred section in Drive, and since you're already in your work account's Drive, everything opens in the right account automatically.
Making Drive faster to access:
Bookmark this URL (with your work account number) as your "launch pad":
https://drive.google.com/drive/u/2/starred
Click that bookmark → you're in Drive under your work account → open any file from there → always in the right account. No drama.
Fix #6: Create a Bookmarklet (probably not work)
Okay this one's a bit more technical but stick with me, it's actually really clever and takes about 60 seconds to set up.
A bookmarklet is a bookmark that, instead of being a URL to a website, contains a tiny piece of JavaScript code. When you click it, it runs that code on whatever page you're currently on.
Here's the bookmarklet you want:
javascript:window.location.href=window.location.href.replace('docs.google.com/document/d/','docs.google.com/document/u/2/d/')
What this does: when you're on a Google Doc that opened in the wrong account, you click this bookmarklet, and it automatically reloads the same page but with /u/2/ in the URL, which forces it to open in your work account.
How to set it up:
- Right-click on your bookmarks bar → "Add page" or "Add bookmark"
- Give it a name like "→ Work Account"
- In the URL field, paste the code above
- Save it
Now whenever a Google page opens in the wrong account, just click that bookmark. It'll swap you to the right account instantly.
Final Thought
Google's multi-account experience sucks by an order of magnitude :)