🏠 返回首頁 

Expand all Reddit posts on mouse scolling

Expand all Reddit on mouse scolling


Install this script?
// ==UserScript==
// @name         Expand all Reddit posts on mouse scolling
// @namespace    nothing
// @version      1.0
// @description  Expand all Reddit on mouse scolling
// @author       drive dd
// @license      MIT
// @match        https://www.reddit.com/*
// @grant        none
// ==/UserScript==
(function() {
'use strict';
document.addEventListener('wheel', expandall);
function expandall() {
[...document.getElementsByClassName("qt_read_more")].map( e => e.click() );
[...document.getElementsByClassName("_3NPaMDmW2g_XhEdxfn6inI")].map( e => e.click() );
[...document.getElementsByClassName("_35d97uauE52jtrUNWw8B4i lQv8U3Ne_-BQ6fbAfxKIS")].map( e => e.click() );
}
})();