Makes MAL always be opened by default on Desktop Mode.
目前為
// ==UserScript==
// @name Desktop Mode - MAL
// @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
// @version 1
// @description Makes MAL always be opened by default on Desktop Mode.
// @author hacker09
// @match https://myanimelist.net/*
// @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://myanimelist.net&size=64
// @run-at document-start
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.cookie = 'view=pc;path=/;'; //Set the desktop mode cookie
})();