Skip to content

Instantly share code, notes, and snippets.

@TakamiChie
Created December 14, 2018 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TakamiChie/a2b66e0d3a2c61b1e78137301b6f07ce to your computer and use it in GitHub Desktop.
Save TakamiChie/a2b66e0d3a2c61b1e78137301b6f07ce to your computer and use it in GitHub Desktop.
Microsoft To-DoのWeb UIにおいて、開いているタスクリストのタスクをコピーする
// https://to-do.office.com/today あたりで開発者モードを開きコンソールで実行する
var s = "";
document.querySelectorAll(".taskItem-title").forEach((e) => {
s += e.textContent + "\n";
});
prompt("CopyThis", s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment