WBW Downloader

Download button for WhatBoysWant

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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', '');
})();