Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // ==UserScript==
  2. // @name No popups
  3. // @namespace ockcyp/no-popups
  4. // @description Disable opening of new windows for included websites
  5. // @version 1.0
  6. // @grant none
  7. // @include none
  8. // @author ockcyp
  9. // ==/UserScript==
  10. window.open = function () {
  11. return true;
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement