NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Qollie Auto-expanding // @namespace https://wiki.gslin.org/wiki/Qollie_Auto-expanding // @version 0.20190510.1 // @description Avoid click expanding links manually in Qollie // @author Gea-Suan Lin <darkkiller@gmail.com> // @match https://www.qollie.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let work = () => { for (let el of document.querySelectorAll('button, span')) { if ('查看全文' === el.innerText) { el.click(); } } }; work(); document.addEventListener('click', work); })();