Skip to content

Instantly share code, notes, and snippets.

View Cyclics's full-sized avatar
💮
Cyclic

Cyclics Cyclics

💮
Cyclic
View GitHub Profile
@tayiorbeii
tayiorbeii / noNewTabs.js
Created August 2, 2018 20:57
Userscript to remove target=_blank
// ==UserScript==
// @name No New Tabs
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
Array.from(document.querySelectorAll('a[target="_blank"]'))