edge-sidebar-history-migration
Recover Microsoft Edge sidebar/App Tower shortcut URLs and convert them into an importable Side Shortcuts Popout backup.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Recover Microsoft Edge sidebar/App Tower shortcut URLs and convert them into an importable Side Shortcuts Popout backup.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | edge-sidebar-history-migration |
| description | Recover Microsoft Edge sidebar/App Tower shortcut URLs and convert them into an importable Side Shortcuts Popout backup. |
Use this skill when a user wants to move Microsoft Edge sidebar/App Tower links into Side Shortcuts Popout after Edge removes or hides the built-in sidebar app list.
Choose the input mode:
-EdgeProfilePath.-InputPath.For direct Edge export, use the profile directory or its Preferences file:
powershell -NoProfile -ExecutionPolicy Bypass -File .\tools\edge-sidebar-migrate\edge-sidebar-migrate.ps1 export-edge `
-EdgeProfilePath "$env:LOCALAPPDATA\Microsoft\Edge\User Data\Default" `
-OutputPath .\Side-Shortcuts-Popout-edge-sidebar-backup.json `
-ShortcutListOutputPath .\edge-sidebar-link-list.json
For an already exported list, run:
powershell -NoProfile -ExecutionPolicy Bypass -File .\tools\edge-sidebar-migrate\edge-sidebar-migrate.ps1 convert `
-InputPath .\path\to\edge-sidebar-list.md `
-OutputPath .\Side-Shortcuts-Popout-edge-sidebar-backup.json
Ask the user to review the generated JSON if the recovered source was noisy or inferred from browser history.
Import from Side Shortcuts Popout Options -> Import -> Merge.
Verify by checking that the shortcut count and titles match the recovered list.
Each shortcut should have:
{
"title": "ChatGPT",
"url": "https://chat.openai.com/",
"mobile": true
}
The generated backup uses:
{
"version": 1,
"app": "side-shortcuts-popout",
"shortcuts": []
}
Shortcut IDs are deterministic from URL, so repeated imports with Merge do not create duplicates for the same URL.
Edge 149 removes the built-in sidebar app list UI. Direct export still works when the profile Preferences file keeps the old sidebar URL records. If the script reports that only titles remain, Edge has likely cleaned the URL records; use a pre-cleanup Preferences backup or an already exported list.
Use LLM judgment only for recovering or cleaning the source list, for example:
Do not use LLM judgment for the actual import file format. Use the CLI so the output stays deterministic.