萌次元(18moe.vip)自动加载预览图

try to take over the world!

// ==UserScript==
// @name         萌次元(18moe.vip)自动加载预览图
// @namespace    http://tampermonkey.net/
// @version      0.1.3
// @description  try to take over the world!
// @author       You
// @match        https://18moe.vip/*
// @grant        none
// @require http://code.jquery.com/jquery-3.5.1.min.js
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    window.jQuery('a[href*="18moe.vip/goto"]').each((i, e) => {
        console.log(e.textContent)
        e.insertAdjacentHTML('afterend','<img src="'+e.textContent+'"/>')
    })

})();