// ==UserScript== // @name 电影天堂dytt auto show // @namespace http://tampermonkey.net/ // @version 0.0.1 // @description 电影天堂自动展开下载列表 // @match https://www.dytt8899.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=javgg.net // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; //show the download list const nodes = document.querySelector("#downlist"); nodes.style.display = 'contents'; })();