Last active
March 5, 2023 23:02
-
-
Save eoureo/e674e8e322db5d57b5c3419710a74137 to your computer and use it in GitHub Desktop.
ChatGPT를 써서 만든 Bookmarklet - "페이지 제목과 URL을 마크다운 형식 [T](U) 으로 클립보드에 저장하는 Bookmarklet을 만들어줘"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() { | |
var title = document.title; | |
var url = window.location.href; | |
var markdown = `[${title}](${url})`; | |
navigator.clipboard.writeText(markdown).then(function() { | |
console.log("Copied to clipboard: " + markdown); | |
}, function(err) { | |
console.error("Failed to copy text: ", err); | |
}); | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
클립보드에 저장된 것을 바로 마크다운 페이지에 "붙여넣기"하여 쓰면 된다.
다음과 같이 ChatGPT와의 대화를 해서 만듦