Skip to content

Instantly share code, notes, and snippets.

@NO-ob
NO-ob / addBuyeeShippingImages.user.js
Last active December 4, 2021 11:12
Adds product images to the package information page on buyee
// ==UserScript==
// @name Buyee Package Information Image Inserter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Adds product images to the package information shipping tab for mercari and yahoo auctions
// @author NO_ob
// @match https://buyee.jp/mybaggages/shipped/1*
// @icon https://www.google.com/s2/favicons?domain=buyee.jp
// @updateURL https://gist.github.com/NO-ob/440a87a761732e46c8b1997146ebc504/raw/addBuyeeShippingImages.user.js
// @downloadURL https://gist.github.com/NO-ob/440a87a761732e46c8b1997146ebc504/raw/addBuyeeShippingImages.user.js
import discord
import requests
import re
from copy import deepcopy
## The bot needs persm to make messages, manage messages and manage webhook
## set the value at the botton to the bots token
intents=discord.Intents.default()
intents.message_content = True
client = discord.Client(intents=intents)