GC Gourmet Highlighter

Highlights any avatar gourmets (spooky, snow, chocolate, healthy) on the page.

目前為 2023-10-13 提交的版本,檢視 最新版本

// ==UserScript==
// @name         GC Gourmet Highlighter
// @namespace    https://gf.qytechs.cn/en/users/1175371/
// @version      0.6
// @description  Highlights any avatar gourmets (spooky, snow, chocolate, healthy) on the page.
// @author       sanjix
// @match        https://www.grundos.cafe/gourmet_club/?pet_name=*
// @match        https://www.grundos.cafe/viewshop/?shop_id=14
// @match        https://www.grundos.cafe/viewshop/?shop_id=16
// @match        https://www.grundos.cafe/viewshop/?shop_id=30
// @match        https://www.grundos.cafe/viewshop/?shop_id=37
// @icon         https://www.google.com/s2/favicons?sz=64&domain=grundos.cafe
// @grant        none
// ==/UserScript==

var avatarGourmets = ["Mint Chocolate Kacheek", "Dark Chocolate Poogle", "Orange Chocolate Scorchio", "Juppiemint Bar", "Lemon Sherbert Jelly Beans", "Charcoal Jelly Beans", "Sweet Necklace", "Baby Cabbage Jelly Beans", "Mint Chocolate Lupe", "Dark Chocolate Shoyru", "Mint Chocolate Blumaroo", "Dark Chocolate Skeith", "Strawberry Fondant Surprise", "Fluff N Stuff Grarrl Gobstopper", "Mint Chocolate Chia", "Apple and Custard Drops", "Kau Sundae", "Mint Chocolate Peophin", "Minty Choccywhip", "Bullseyes", "Yummy Drops", "Super Spicy Jelly Beans", "Hazelnut Whirl", "Chocolate Peach", "ErgyFruit Jelly Beans", "Creamy Choccywhip", "Spooky Flying Doughnut", "Omnipotent Onion Grarrl Gobstopper", "Caramel and Custard Drops", "Neotruffle", "Deluxe Strawberry Toffee Chokato", "Fishy Delight Grarrl Gobstopper", "Double Chocolate Jelly Beans", "Lemon and Lime Easter Negg", "Luxury Chocolate Easter Negg", "Mint Chocolate Easter Negg", "Chocolate Orange Easter Negg", "Pretty Pink Easter Negg", "Spotted Easter Negg", "Strawberries and Cream Easter Negg", "Chococherry Blumaroo Ears", "Chocolate Gum", "Chocoon", "Crunchy Chocolate Grarrl", "Chocolate Lipstick", "Chocolate Peanuts With Peas", "Choco Spray", "Cube-Shaped Strawberry", "Parsnip Pie", "Jelly Covered Greycorn", "Stuffed Olive Salad", "Cube-Shaped Orange", "Cube-Shaped Lemon", "Cone-Shaped Watermelon", "Cube-Shaped Cherry", "Radish Pie", "Cabbage Cupcake", "Cone-Shaped Strawberry", "Radish Meringue", "Cheesy Broccoli Bite", "Baked Apple with Snowberries", "Cone-Shaped Orange", "Broccoli Kebab", "Fresh Sushi Roll", "Cone-Shaped Lemon", "Radish and Cheese", "Broccoli and Mustard Sandwich", "Fresh Sushi Cone", "Cauliflower Lolly", "Pickled Cauliflower", "Cauliflower Shake", "Cauliflower Soup", "Cone-Shaped Cherry", "Asparagus Balls", "Cheesy Asparagus", "Asparagus Pie", "Luxury Cabbage Cake", "Four Layer Carrot Cake", "Cheesy Carrots", "Broccoli with Sprinkles", "Tomato Kebab", "French Onion Soup", "Artichoke Fondue", "Artichoke Cupcake", "Artichoke and Onion Surprise", "Ghost Marshmallows", "Haunted Milk", "Intestines and Marinara", "Rest in Peace of Chicken", "Blumaroo Tail Salad Extravaganza", "Spooky Handwich", "The Stuff", "Spooky Jelly Brains", "Hair Stuffed Maggot", "Bat Kebab", "Chocolate Coated Eye", "Grundo Toe Lint", "Mouldy Cheese", "Parts on a Pizza", "Meerca Pie", "Quiggle Pie", "Runny Snot", "Crunchy Snotball", "Wing of Korbat", "Snorkle Pudding", "Pumpkin Scoopings", "Jelly Spider Eyeball", "Apple Lantern", "Halloween Candy Cane", "Coco Pumpkin", "Gorerito", "Jelly Finger", "Spoooky Muffin", "Fright Pop", "Spooky Ghostbeef", "Gnome Shroom", "Crypt of Spaghetti", "Brainburger", "Fruity Brucicle", "Moehog Lollypop", "Strawberry Chia Pop", "Grape Jelly Brucicle", "Crystal Burger", "Crystal Cookies", "Crystal Crunch", "Frozen Negg", "Crystal Pop", "Crystal Taco", "Crystal Turkey", "Banana Split Chia Pop", "Angelic Ice Lolly", "Hamarama Ice Lolly", "Magical Apple Chia Pop", "Magical Asparagus Chia Pop", "Magical Aubergine Chia Pop", "Magical Avocado Chia Pop", "Magical Blueberry Chia Pop", "Magical Chokato Chia Pop", "Magical Durian Chia Pop", "Magical Gooseberry Chia Pop", "Magical Grape Chia Pop", "Magical Lemon Chia Pop", "Magical Lime Chia Pop", "Magical Pea Chia Pop", "Magical Peach Chia Pop", "Magical Pear Chia Pop", "Magical Pepper Chia Pop", "Magical Pineapple Chia Pop", "Magical Plum Chia Pop", "Magical Thornberry Chia Pop", "Magical Tomato Chia Pop", "Tartan Chia Pop", "Magical Nugget Chia Pop", "Snowager Ice Lolly", "Magical Strawberry Brucicle", "Sparkly Ice Lolly"];

function highlighter() {
    var items = document.querySelectorAll('li span,strong');
    items.forEach((item) => {
    if (avatarGourmets.includes(item.textContent)) {
        item.style.backgroundColor = 'yellow';
    }});
}
if (document.querySelector("a[href='/gourmet_club/']") != null) {
    var button = document.createElement('button');
    button.className = "highlighter";
    button.textContent="Highlight avatar gourmets";
    button.addEventListener("click", function() {highlighter();});
    var gourmetsEaten = document.querySelector('div.center p');
    gourmetsEaten.after(button);
}
else {
    highlighter();
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址