您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在查看大图时会在右侧显示一个按钮。点击按钮就可以在新页面查看和保存图片。
当前为
// ==UserScript== // @name 在新页面打开twitter的图片 // @name:en open twitter image in new tab // @namespace https://saber.love/?p=3967 // @version 0.1 // @description 在查看大图时会在右侧显示一个按钮。点击按钮就可以在新页面查看和保存图片。 // @description:en On you view big image, you can view and save image in new tab. // @author xuejianxianzun // @include *://twitter.com* // @icon https://twitter.com/favicon.ico // @run-at document-end // ==/UserScript== let t_img_wrap = document.querySelector('.Gallery-media'); let t_img_url; if (!!t_img_wrap) { let t_img_down_button = document.createElement('div'); t_img_down_button.innerHTML = 'open image'; t_img_down_button.setAttribute('style', 'display:inline-block;visibility:hidden;padding:5px 7px;position: fixed;right: 0;top: 30%;z-index: 9999;background:#1EA1F2;color:#fff;cursor: pointer;'); document.body.appendChild(t_img_down_button); t_img_down_button.addEventListener('click', function () { window.open(t_img_url); }); setInterval(function () { let t_img_element = document.querySelector('.Gallery-media .media-image'); if (getComputedStyle(t_img_wrap)['display'] === "block" && !!t_img_element) { t_img_url = t_img_element.src; t_img_down_button.style.visibility = 'visible'; } else { t_img_down_button.style.visibility = 'hidden'; } }, 400); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址