mirror of
https://github.com/XIU2/UserScript.git
synced 2026-09-22 15:06:57 +00:00
新增 [蓝奏云网盘增强] 脚本(自动显示更多文件(文件夹末尾按钮))
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
// ==UserScript==
|
||||
// @name 蓝奏云网盘增强
|
||||
// @version 1.0.0
|
||||
// @author X.I.U
|
||||
// @description 自动显示更多文件(文件夹末尾按钮)
|
||||
// @match https://www.lanzou.com/account.php
|
||||
// @match https://up.woozooo.com/mydisk.php*
|
||||
// @icon https://www.lanzou.com/favicon.ico
|
||||
// @grant GM_xmlhttpRequest
|
||||
// @grant GM_registerMenuCommand
|
||||
// @grant GM_openInTab
|
||||
// @noframes
|
||||
// @license GPL-3.0 License
|
||||
// @run-at document-end
|
||||
// @namespace https://github.com/XIU2/UserScript
|
||||
// ==/UserScript==
|
||||
|
||||
(function() {
|
||||
// 如果位于 [https://www.lanzou.com/account.php] 网页,则跳转至 iframe 指向的 [https://up.woozooo.com/mydisk.php] 网页
|
||||
// 用来解决 iframe 跨域无法操作的问题,其实 [https://up.woozooo.com/mydisk.php] 还套了一个 iframe,但已经是同域可以操作了,没必要再跳转了
|
||||
if(window.top.location.href === "https://www.lanzou.com/account.php"){
|
||||
window.top.location.href = "https://up.woozooo.com/mydisk.php"
|
||||
}
|
||||
|
||||
// 注册脚本菜单
|
||||
GM_registerMenuCommand('反馈 & 建议', function () {window.GM_openInTab('https://github.com/XIU2/UserScript#xiu2userscript', {active: true,insert: true,setParent: true});});
|
||||
|
||||
// 自动显示更多文件
|
||||
function fileMore() {
|
||||
var mainframe = document.getElementById("mainframe").contentWindow;
|
||||
var filemore = mainframe.document.getElementById("filemore");
|
||||
if(filemore && filemore.style.display != "none"){
|
||||
if(filemore.children[0]){
|
||||
filemore.children[0].click();
|
||||
}
|
||||
}
|
||||
}
|
||||
// 定时执行(为了确保不漏掉,只能用这个笨方法了。。。)
|
||||
setInterval(fileMore,100)
|
||||
})();
|
||||
@@ -20,6 +20,7 @@
|
||||
| **3DM论坛 美化** | 精简多余内容 | **[「安装」](https://greasyfork.org/zh-CN/scripts/413593)** | **[「安装」](https://cdn.jsdelivr.net/gh/XIU2/UserScript@master/3dm-Beautification.user.js)** |
|
||||
| **3DM论坛 增强** | 自动回复、自动无缝翻页、清理置顶帖子 | **[「安装」](https://greasyfork.org/zh-CN/scripts/412890)** | **[「安装」](https://cdn.jsdelivr.net/gh/XIU2/UserScript@master/3dm-Enhanced.user.js)** |
|
||||
| **423Down 增强 \*** | 自动无缝翻页 | **[「安装」](https://greasyfork.org/zh-CN/scripts/419215)** | **[「安装」](https://cdn.jsdelivr.net/gh/XIU2/UserScript@master/423Down-Enhanced.user.js)** |
|
||||
| **蓝奏云网盘 增强 \*** | 自动显示更多文件(文件夹末尾按钮) | **[「安装」](https://greasyfork.org/zh-CN/scripts/419224)** | **[「安装」](https://cdn.jsdelivr.net/gh/XIU2/UserScript@master/Lanzou-Enhanced.user.js)** |
|
||||
| **智友邦论坛 美化** | 精简多余内容、宽屏显示 | **[「安装」](https://greasyfork.org/zh-CN/scripts/412361)** | **[「安装」](https://cdn.jsdelivr.net/gh/XIU2/UserScript@master/Zhiyoo-Beautification.user.js)** |
|
||||
| **智友邦论坛 增强** | 自动签到、自动回复、自动无缝翻页、清理置顶帖子... | **[「安装」](https://greasyfork.org/zh-CN/scripts/412362)** | **[「安装」](https://cdn.jsdelivr.net/gh/XIU2/UserScript@master/Zhiyoo-Enhanced.user.js)** |
|
||||
| ~~_**Google 翻译 美化**_~~ | ~~_精简多余内容、修复翻译结果溢出屏幕问题_~~ | ~~_**[「安装」](https://greasyfork.org/zh-CN/scripts/413721)**_~~ | ~~_**[「安装」](https://cdn.jsdelivr.net/gh/XIU2/UserScript@master/GoogleTranslate-Beautification.user.js)**_~~ |
|
||||
|
||||
Reference in New Issue
Block a user