Makes entity mentions open in a new tab rather than the current one.
// ==UserScript==
// @name Open Kanka mentions in a new tab
// @namespace http://tampermonkey.net/
// @version 1
// @description Makes entity mentions open in a new tab rather than the current one.
// @author Salvatos
// @license MIT
// @match https://app.kanka.io/*
// @icon https://www.google.com/s2/favicons?domain=kanka.io
// @run-at document-end
// ==/UserScript==
document.querySelectorAll("a.entity-mention").forEach((m) => {m.target = "_blank"});