您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Download button for WhatBoysWant
// ==UserScript== // @name WBW Downloader // @namespace http://tampermonkey.net/ // @version 0.1 // @description Download button for WhatBoysWant // @author ReaperUnreal // @match https://*.whatboyswant.com/babes/* // @icon https://www.google.com/s2/favicons?sz=64&domain=whatboyswant.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // get the image link var images = document.getElementsByClassName('img-fluid'); if (images.length !== 1) { return; } var src = images[0].src; // get the button row var cards = document.getElementsByClassName('card-tools'); if (cards.length !== 1) { return; } var buttonRow = cards[0]; if (buttonRow.children.length < 2) { return; } // positively identify download button var downloadA = buttonRow.children[1]; if (downloadA.tagName.toLowerCase() !== 'a') { return; } if (downloadA.children.length !== 1) { return; } if (!downloadA.children[0].classList.contains('fa-download')) { return; } downloadA.href = src; downloadA.setAttribute('download', ''); })();