# Patch Firefox Shift Enter

> Install, verify, or repair the Windows Firefox AutoConfig patch that makes address-bar Shift+Enter open in the current tab. Windows + WSL host only.

- Skill: `pineapplesour/patch-firefox-shift-enter` (Agent Skill)
- Install (CLI): `npx skillmds@latest add pineapplesour/patch-firefox-shift-enter`
- Raw SKILL.md: https://api.skillmd.com/api/skills/pineapplesour/patch-firefox-shift-enter/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: pineapplesour (https://skillmd.com/u/pineapplesour)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/pineapplesour/patch-firefox-shift-enter

---


# Firefox Shift+Enter AutoConfig patch (Windows)

## 1. Locate the Firefox install

```bash
powershell.exe -NoProfile -Command "Get-Item 'C:\Program Files\Mozilla Firefox\firefox.exe' | Select-Object -ExpandProperty VersionInfo | Select-Object ProductVersion"
```

## 2. Check the installed patch package

```bash
ls -la /mnt/c/Users/$USER/AppData/Local/FirefoxShiftEnterPatch/
sha256sum /mnt/c/Users/$USER/AppData/Local/FirefoxShiftEnterPatch/autoconfig.js
```

## 3. Verify the AutoConfig files are in place

```bash
test -f "/mnt/c/Program Files/Mozilla Firefox/defaults/pref/autoconfig.js" && echo "autoconfig loader present"
test -f "/mnt/c/Program Files/Mozilla Firefox/firefox.cfg" && echo "firefox.cfg present"
```

