ALL THE LINKS in new tab

This will force all the links open in a new tab, even internal links.

目前为 2017-07-19 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name ALL THE LINKS in new tab
  3. // @namespace https://www.ioriens.com/
  4. // @include *
  5. // @version 1
  6. // @run-at document-idle
  7. // @description This will force all the links open in a new tab, even internal links.
  8. // ==/UserScript==
  9.  
  10.  
  11. (function(){
  12. 'use strict';
  13. Array.from(document.getElementsByTagName('a')).map(function(b){b.setAttribute('target','_blank');});
  14. })();