🏠 Home 

Bypass LiveJournal External Link Warning

Automatically bypass LiveJournal's external link warning page

  1. // ==UserScript==
  2. // @name Bypass LiveJournal External Link Warning
  3. // @namespace https://github.com/dear-clouds/mio-userscripts
  4. // @version 1.0
  5. // @description Automatically bypass LiveJournal's external link warning page
  6. // @author Mio.
  7. // @supportURL https://github.com/dear-clouds/mio-userscripts/issues
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=livejournal.com
  9. // @license GPL-3.0
  10. // @match *://*.livejournal.com/away?to=*
  11. // @grant none
  12. // ==/UserScript==
  13. (function() {
  14. 'use strict';
  15. var urlParams = new URLSearchParams(window.location.search);
  16. var redirectUrl = urlParams.get('to');
  17. if (redirectUrl) {
  18. window.location.href = decodeURIComponent(redirectUrl);
  19. }
  20. })();