Skip to content

Instantly share code, notes, and snippets.

@yammerjp
Created May 7, 2021 09:51
Show Gist options
  • Select an option

  • Save yammerjp/a40a98cc7f8f32c8708d9f10328b5f75 to your computer and use it in GitHub Desktop.

Select an option

Save yammerjp/a40a98cc7f8f32c8708d9f10328b5f75 to your computer and use it in GitHub Desktop.
現在開いているページのURLとタイトルをMarkdownの形式でクリップボードにコピーする (以下のテキストをブックマークのURL欄に)
javascript:(function(){const e=document.createElement('input');e.value=`[${document.title}](${location.href})`;document.querySelector('body').append(e);e.select();document.execCommand('copy');e.remove();})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment