Universal Image Paste to Upload

Paste an image from your clipboard directly into the first available file upload input on the page.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

You will need to install an extension such as Tampermonkey to install this script.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

작성자
AnnaRoblox
일일 설치 수
0
총 설치 수
0
평점
0 0 0
버전
1.0
생성일
2025-12-18
갱신일
2025-12-18
크기
2.52KB
라이선스
MIT
적용 사이트
모든 사이트

How it works
1 Clipboard Detection: It checks event.clipboardData for any item with a MIME type starting with image/.

2 The DataTransfer Object: You can't just set input.value = "path/to/file" for security reasons. Instead, we use the DataTransfer API to simulate a file being dropped onto the input.

3 Smart Targeting: The script looks for all elements. It tries to find one that is visible (width and height > 0) so it doesn't accidentally dump the image into a hidden background field.

4 Event Dispatching: After attaching the file, it manually triggers the change event. This is crucial because many sites (like Discord or GitHub) wait for that event to start the upload process.