Greasy Fork is available in English.

print-behance-img

在控制台输出 Behance 页面的图片地址

// ==UserScript==
// @name        print-behance-img
// @match       https://www.behance.net/gallery/*
// @namespace   http://tampermonkey.net/
// @description 在控制台输出 Behance 页面的图片地址
// @author      XHXIAIEIN
// @version     2022.11.02
// @grant       none
// @license     MIT
// @run-at      document-body
// ==/UserScript==

function catch_img() {
    const rule1 = document.getElementsByClassName("image-loaded") || [];
    const rule2 = document.getElementsByClassName("ImageElement-image-SRv") || [];

    const image_list = [...rule1, ...rule2];

    console.group();
    Array.prototype.forEach.call(image_list, (e) => {
        console.log(e.src);
    });
    console.groupEnd();
}


window.addEventListener('load', (event) => {
  setTimeout(() => catch_img(), 650);
});