Automatically moves tabs whose URL matches a configured prefix to the leftmost position based on relative priority.
Edit background.js and change TARGET_URLS to include the URL prefixes you want.
Example:
const PRIORITY_PREFIXES = [
"https://mail.google.com/",
"https://calendar.google.com/",
// Add more prefixes here, in order
];- Download and unzip the archive.
- Open Chrome and go to
chrome://extensions. - Toggle Developer mode on (top right).
- Click Load unpacked and select the unzipped folder.
- Works with Manifest V3 using a background service worker.
- Requires
tabspermission and<all_urls>host permissions to detect matches. - Moves the tab only within its current window.