Advertisement
kovacsadam07

Untitled

Jan 4th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name          Duck Duck Go search on new tab
  3. // @description   In the search bar pressing CTRL + ENTER  will search on a new tab
  4. // @include       https://www.duckduckgo.com/*
  5. // @include       https://duckduckgo.com/*
  6. // @include       http://duckduckgo.com/*
  7. // ==/UserScript==
  8.  
  9.  
  10. (function () {
  11.     var searchForm = document.getElementById("search_form");
  12.  
  13.     document.addEventListener('keydown', function (e) {
  14.         if (e.keyCode == 17) {
  15.             searchForm.target = "_blank";
  16.         }
  17.     }, false);
  18.  
  19.     document.addEventListener('keyup', function (e) {
  20.         if (e.keyCode == 17 || e.keyCode == 13) {
  21.             searchForm.target = "_self";
  22.         }
  23.     }, false);
  24. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement