CSC Autoscroll

Automatically scroll on cocksizecontest main page

目前為 2017-03-15 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        CSC Autoscroll
// @description Automatically scroll on cocksizecontest main page
// @namespace   cocksizecontest.com
// @include     https://www.cocksizecontest.com/
// @include     https://www.cocksizecontest.com/#*
// @version     1
// @grant       none
// ==/UserScript==

var autoscrollTimeout = null;

window.addEventListener('scroll', function() {
  if (autoscrollTimeout) {
    clearTimeout(autoscrollTimeout);
  }
  autoscrollTimeout = window.setTimeout(function() {

    // window.scrollTop + window.innerHeight == lowest pixel viewable
    // subtract document.height to get how much is left below the page
    //console.log("scrollTop: " + window.scrollY);
    //console.log("innerHeight: " + window.innerHeight);
    //console.log("height: " + document.body.scrollHeight);
    if (document.body.scrollHeight < 500) {
      return;
    }
    var remaining = document.body.scrollHeight - (window.scrollY + window.innerHeight);
    if (remaining < 500) {
      var link = document.querySelector('.cscMoreFeedLink > a[href]');
      if (link) {
        link.click();
      }
    }
    
  }, 300);
});