Warning: fopen(/www/sites/greasyfork.cloud/index/store/forever/a4b352e0e4aad401c0ed1f9845dac4c0.html): failed to open stream: No space left on device in /www/sites/greasyfork.cloud/index/scriptsControl.php on line 127
9gag show comments - 源代码

Greasy Fork

9gag show comments

Show comments instead of "related" section on 9gag.com

当前为 2023-04-17 提交的版本,查看 最新版本

// ==UserScript==
// @name         9gag show comments
// @version      0.0.1
// @description  Show comments instead of "related" section on 9gag.com
// @namespace    chillin77
// @author       chillin77
// @license      MIT
// @match        https://9gag.com/gag/*
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  var url   = document.URL;
  if(!url.endsWith("#comment")){
    location.href = url+"#comment";
  }
})();