From 62bf40dc34dcfa8f1e9859049b63485125a76c8c Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Fri, 5 Jun 2020 13:38:27 +0300 Subject: [PATCH] open links in new tab --- html_resources/selector.js | 1 + 1 file changed, 1 insertion(+) diff --git a/html_resources/selector.js b/html_resources/selector.js index 3060c8c..ffa8613 100644 --- a/html_resources/selector.js +++ b/html_resources/selector.js @@ -104,6 +104,7 @@ function createCategories(){ node.classList.add("hidden"); link.href = `https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/${name}`; link.title = "See on Github"; + link.target = "_blank"; }else{ node.textContent = name; }