Artist Finder

Link to profile of tattoo festival artists

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);
})();