Artist Finder

Link to profile of tattoo festival artists

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

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