Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/8cbef70eef17e5091da9c13094dc3a39.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @id Remove Amazon popups
// @name Remove Amazon popups
// @description Some marketing idiot at Amazon must have decided to make every link a popup. This script prevents Amazon links from opening a new tab.
// @include https://www.amazon.*
// @version 0.0.1
// @namespace https://greasyfork.org/users/39602
// @downloadURL https://update.greasyfork.icu/scripts/18960/Remove%20Amazon%20popups.user.js
// @updateURL https://update.greasyfork.icu/scripts/18960/Remove%20Amazon%20popups.meta.js
// ==/UserScript==
(function() {
'use strict';
[].forEach.call(document.querySelectorAll('a[target="_blank"]'),
function(link) {
link.removeAttribute('target');
});
})();