🏠 Home 

Overleaf New Tabs

Make links on the Overleaf "Your Projects" page open in a new tab


Install this script?
  1. // ==UserScript==
  2. // @name Overleaf New Tabs
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-04-08
  5. // @description Make links on the Overleaf "Your Projects" page open in a new tab
  6. // @author Kilian Evang
  7. // @match https://www.overleaf.com/project
  8. // @match https://www.overleaf.com/project/
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=overleaf.com
  10. // @grant none
  11. // @license MIT
  12. // ==/UserScript==
  13. (function() {
  14. 'use strict';
  15. const head = document.querySelector('head')
  16. const base = document.createElement('base')
  17. base.setAttribute('target', '_blank')
  18. head.appendChild(base)
  19. })();