您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Opens the image itself while opening different screenshot services (you won't see their bloated webpages).
- // ==UserScript==
- // @name Full image from screenshoters
- // @namespace Neur0toxine
- // @license MIT
- // @include /^https?:\/\/prnt\.sc\/[\w\-]+$/
- // @include /^https?:\/\/skr\.sh\/\w+$/
- // @include /^https?:\/\/ibb\.co\/\w+$/
- // @include /^https?:\/\/monosnap\.com\/file\/\w+$/
- // @include /^https?:\/\/nimbusweb\.me\/nimbus\-screenshots\/\w+$/
- // @include /^https?:\/\/joxi\.ru\/\w+$/
- // @exclude /^https?:\/\/joxi\.ru\/\w+\.jpg$/
- // @grant none
- // @version 0.4
- // @author Neur0toxine
- // @description Opens the image itself while opening different screenshot services (you won't see their bloated webpages).
- // ==/UserScript==
- switch (location.host) {
- case 'prnt.sc':
- location.assign(document.querySelector('.no-click.screenshot-image').src);
- break;
- case 'skr.sh':
- location.assign(document.getElementById('screenshot-image').src);
- break;
- case 'joxi.ru':
- location.assign(location.href + '.' + document.querySelector('.tile-preview > img').src.split('.').pop());
- break;
- case 'ibb.co':
- location.assign(document.querySelector('#image-viewer-container > img').src);
- break;
- case 'monosnap.com':
- location.assign(`https://api.monosnap.com/file/download?id=${location.pathname.replace('/file/', '')}`);
- break;
- case 'nimbusweb.me':
- location.assign(document.querySelector('nns-note > .nns-adds-wrapper > .wrapper > .note-content > nns-note-text img').src);
- break;
- }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址