您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
把[图片下载器]的开关添加到[媒体资源嗅探及下载(支持下载m3u8和mp4视频和音频)]的功能列里面
// ==UserScript== // @name 视频音频图片下载脚本整合器,手机可用,免键盘,免油猴菜单 // @namespace https://facaikotei.github.io/ // @version 1.982 // @description 把[图片下载器]的开关添加到[媒体资源嗅探及下载(支持下载m3u8和mp4视频和音频)]的功能列里面 // @author (c)2025 facaikotei // @match *://*/* // @grant GM_addElement // @grant GM_addStyle // @grant GM_setValue // @grant GM_getValue // @require https://mirrors.sustech.edu.cn/cdnjs/ajax/libs/jwerty/0.3.2/jwerty.min.js // @require https://mirrors.sustech.edu.cn/cdnjs/ajax/libs/sentinel-js/0.0.5/sentinel.min.js // @license MIT // @homepageURL http://greasyfork.icu/scripts/529908 // ==/UserScript== (function () { 'use strict'; sentinel.on("#MyUpDown", function () { GM_addElement(document.querySelector(".MyBT"), "div", { id: "MyImage", class: "jianBian", textContent: "图片" }); GM_addElement(document.querySelector("#MyImage"), "div", { style: "opacity: 0;", textContent: "图片" }); GM_addStyle(".MyBT>div>div { width: 150px; }"); document.querySelector("#MyImage").onclick = function () { jwerty.fire(GM_getValue("shortCutString", "alt+W")); }; sentinel.off("#MyUpDown"); }); sentinel.on(".shortCutString:not(:focus)", function () { GM_setValue("shortCutString", document.querySelector(".shortCutString").value); }); })();