WBW Downloader

Download button for WhatBoysWant

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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