您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Link to profile of tattoo festival artists
// ==UserScript== // @name Artist Finder // @namespace http://tampermonkey.net/ // @license MIT // @description Link to profile of tattoo festival artists // @author Leo Long // @version 2024-09-21 // @description try to take over the world! // @match https://atlantatattoofestival.com/artists/attending-artists/ // @icon https://www.google.com/s2/favicons?sz=64&domain=atlantatattoofestival.com // @grant none // ==/UserScript== (function() { 'use strict'; console.log("hi james"); setTimeout(function(){ window.scrollTo(0, document.body.scrollHeight); jQuery('.e-gallery-item')[0].click() },500); setTimeout(function(){ var artists=jQuery('img.elementor-lightbox-image'); console.log(artists.length) for (var i = 0, len = artists.length; i < len; i++) { var picture=artists[i]; var linky = "<a target='_blank' href='https://www.google.com/search?q=@"+encodeURIComponent(picture.getAttribute('data-title'))+" tattoo'</a>" jQuery(picture).wrap(linky); } },500); })();