Auto Relister

Chrome Extension Installation Guide

Windows
macOS

Windows Installation

1

Download the installer file

Click the button below to download the Auto Relister installer.

Download Windows Installer
2

Double-click the downloaded file

Open your Downloads folder and double-click install-autorelister-windows.bat.

3

Click Yes on the security prompt

Windows will ask "Do you want to allow this app to make changes?" — click Yes. A black window will appear and show a success message when done.

4

Restart Chrome

Close all Chrome windows completely, then reopen Chrome.

5

Done — it installs automatically

Auto Relister installs silently on the next Chrome launch. To confirm, open chrome://extensions and turn on Developer mode (toggle in the top-right corner) — you'll see Auto Relister listed. No "Add extension" prompt needed.

Keep Developer mode ON in chrome://extensions — it's needed to see the extension's status and to use the Update button. Updates are otherwise automatic: Chrome checks for new versions roughly every few hours and installs them silently.
Steps 1-3 blocked by antivirus or your company's IT policy? Run it via PowerShell instead

Some antivirus tools and company IT policies block downloaded .bat files. If that happened to you, open PowerShell as Administrator (right-click the Start button → Windows PowerShell (Admin) or Terminal (Admin)), paste the commands below, press Enter, then restart Chrome.

Stop-Process -Name chrome,chrome_proxy -Force -ErrorAction SilentlyContinue
Start-Sleep -Seconds 2

Get-ChildItem "C:\Users" -Directory -ErrorAction SilentlyContinue | ForEach-Object {
    $p = Join-Path $_.FullName "AppData\Local\Google\Chrome\User Data\Policy"
    if (Test-Path $p) { Remove-Item $p -Recurse -Force -ErrorAction SilentlyContinue }
}
Remove-Item "C:\ProgramData\Google\Chrome" -Recurse -Force -ErrorAction SilentlyContinue

$roots = "HKLM:\SOFTWARE\Google\Chrome","HKLM:\SOFTWARE\WOW6432Node\Google\Chrome","HKCU:\SOFTWARE\Google\Chrome","HKLM:\SOFTWARE\Policies\Google\Chrome","HKLM:\SOFTWARE\WOW6432Node\Policies\Google\Chrome","HKCU:\SOFTWARE\Policies\Google\Chrome"
foreach ($r in $roots) {
    Remove-ItemProperty -Path $r -Name "CloudManagementEnrollmentToken" -ErrorAction SilentlyContinue
    Remove-ItemProperty -Path $r -Name "CloudManagementEnrollmentMandatory" -ErrorAction SilentlyContinue
    Remove-Item -Path "$r\ExtensionInstallForcelist" -Recurse -Force -ErrorAction SilentlyContinue
    Remove-Item -Path "$r\ExtensionInstallSources" -Recurse -Force -ErrorAction SilentlyContinue
    Remove-Item -Path "$r\ExtensionInstallAllowlist" -Recurse -Force -ErrorAction SilentlyContinue
}

foreach ($base in "HKLM:\SOFTWARE\Policies\Google\Chrome","HKLM:\SOFTWARE\WOW6432Node\Policies\Google\Chrome") {
    New-Item -Path "$base\ExtensionInstallForcelist" -Force | Out-Null
    New-ItemProperty -Path "$base\ExtensionInstallForcelist" -Name "1" -PropertyType String -Value "jblmdokpejidkpbfojcmmlfhmeamkboj;https://extension.autorelister.com.au/updates.xml" -Force | Out-Null
}

Write-Host "Auto Relister policy installed. Restart Chrome to finish." -ForegroundColor Green

macOS Installation

1

Download the configuration profile

Click the button below to download the Auto Relister profile.

Download Profile
2

Open the downloaded profile

Double-click AutoRelister-Forcelist.mobileconfig in your Downloads. You'll see a "Profile Downloaded" message — click OK.

3

Install it in System Settings

Open System Settings → General → Device Management (older macOS: System Preferences → Profiles). Click Auto Relister Chrome Extension, then Install, and enter your Mac password. If macOS warns the profile is unverified, continue — it's safe.

4

Restart Chrome

Press Cmd+Q to fully quit Chrome, then reopen it.

5

Done — it installs automatically

Auto Relister installs silently on the next Chrome launch. To confirm, open chrome://extensions and turn on Developer mode (toggle in the top-right corner) — you'll see Auto Relister listed as "Installed by enterprise policy." No "Add extension" prompt needed.

Keep Developer mode ON in chrome://extensions — it's needed to see the extension's status and to use the Update button. Updates are otherwise automatic: Chrome checks for new versions roughly every few hours and installs them silently.