원클릭으로
clipboard-history
Read/write Windows clipboard text, HTML, images, history (PowerShell)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read/write Windows clipboard text, HTML, images, history (PowerShell)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Search and download arXiv papers (no API key needed)
Delegate coding and file edits to Anthropic Claude Code CLI
Running scripts and code on Windows
Delegate coding tasks to OpenAI Codex CLI
Windows Defender: scans, threat history, signatures (PowerShell)
File creation and management on Windows
| name | clipboard-history |
| description | Read/write Windows clipboard text, HTML, images, history (PowerShell) |
| category | windows |
| version | 1.0.0 |
| platform | windows |
| tags | clipboard, copy, paste, history, windows, powershell, text |
| license | Apache-2.0 |
Read and write Windows clipboard content, access clipboard history (Win+V), and manipulate clipboard data — text, HTML, and file lists — via PowerShell.
Get-Clipboard
Set-Clipboard -Value "Hello from Aiden!"
Get-Process | Out-String | Set-Clipboard
Set-Clipboard -Value "C:\Users\<you>\Documents\report.pdf"
Set-Clipboard -Value $null
Add-Type -AssemblyName System.Windows.Forms
[System.Windows.Forms.Clipboard]::GetText([System.Windows.Forms.TextDataFormat]::Html)
Add-Type -AssemblyName System.Windows.Forms
[System.Windows.Forms.Clipboard]::ContainsImage()
Add-Type -AssemblyName System.Windows.Forms
$img = [System.Windows.Forms.Clipboard]::GetImage()
if ($img) {
$img.Save("$env:USERPROFILE\Desktop\clipboard-image.png")
Write-Host "Saved to Desktop"
} else {
Write-Host "No image on clipboard"
}
# Clipboard history requires Windows 10 1809+ and history enabled in Settings
# Use the ContentDeliveryManager workaround or UWP API via PowerShell
Add-Type -AssemblyName Windows.ApplicationModel
$history = [Windows.ApplicationModel.DataTransfer.Clipboard,Windows.ApplicationModel,ContentType=WindowsRuntime]
# Note: full UWP clipboard history requires a packaged app context
# For CLI use, pipe history via the built-in Win+V UI or a third-party tool
Write-Host "Open Win+V to view clipboard history interactively"
"Copy the output of dir to clipboard"
→ Get-ChildItem | Out-String | Set-Clipboard
"Put my public IP address on the clipboard"
→ (Invoke-RestMethod -Uri 'https://api.ipify.org').Trim() | Set-Clipboard
"Clear whatever is on the clipboard"
→ Set-Clipboard -Value $null
Set-Clipboard requires PowerShell 5.1+ on Windows; earlier versions use clip.exe as fallbackSystem.Windows.Forms assembly — only available on Windows