PTH Searchbars open in new tab

Open the searches from the search bar on a new tab

  1. // ==UserScript==
  2. // @name PTH Searchbars open in new tab
  3. // @version 0.2
  4. // @description Open the searches from the search bar on a new tab
  5. // @author Chameleon
  6. // @include http*://redacted.ch/*
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/87476
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var forms=document.getElementById('searchbars').getElementsByTagName('form');
  15. for(var i=0; i<forms.length; i++)
  16. {
  17. forms[i].setAttribute('target', '_blank');
  18. }
  19. })();