This file contains 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
usermap.txt: users.csv | |
csvcut -c 1,2 users.csv | csvformat -T > usermap.txt |
This file contains 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
// Source... bookmarklet version further down | |
const title=document.querySelector("title"); | |
var text=title.innerText.replace(' - JIRA',''); | |
if (text.length > 75) { | |
text=text.substr(0,75) + '…'; | |
} | |
const link=`<a href="${document.location.href}">${text}</a>`; | |
const blobHtml = new Blob([link], { type: "text/html" }); | |
const blobText = new Blob([text], { type: "text/plain" }); | |
const data = [new ClipboardItem({ |