Desktop Mode - MAL

Makes MAL always be opened by default on Desktop Mode.

当前为 2022-05-18 提交的版本,查看 最新版本

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