Skip to content

Instantly share code, notes, and snippets.

@rishubil
Last active February 4, 2024 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rishubil/4b7ba38d11210ac35a2409c92efc703a to your computer and use it in GitHub Desktop.
Save rishubil/4b7ba38d11210ac35a2409c92efc703a to your computer and use it in GitHub Desktop.
Naver webtoon mobile to desktop
// ==UserScript==
// @name Naver webtoon mobile to desktop
// @namespace naver-webtoon-mobile-to-desktop
// @description Naver webtoon mobile to desktop
// @version 0.0.1
// @match https://m.comic.naver.com/*
// @updateURL https://gist.github.com/rishubil/4b7ba38d11210ac35a2409c92efc703a/raw/naver-webtoon-mobile-to-desktop.user.js
// @downloadURL https://gist.github.com/rishubil/4b7ba38d11210ac35a2409c92efc703a/raw/naver-webtoon-mobile-to-desktop.user.js
// @run-at document-start
// ==/UserScript==
// Define global objects for eslint
/* globals GameMgr */
(function () {
window.location.href = window.location.href.replaceAll(
"m.comic.naver.com",
"comic.naver.com"
);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment