自动为Pixiv收藏夹内图片打上已有的标签,并可以搜索收藏夹
Auto-labeling just doesn't appear
Sorry for the late response. Could you please show me the screenshot of your console? There must be an error message showing the reason. It still works fine for myself in Chrome + Tampermonkey.
I turned off all the extensions but tampermonkey:
I see. There's something wrong with one of your user tags. Please use the following snippet in the console and find the line including 'Error'.
function debug(tag) {
try {
console.log(decodeURI(tag));
} catch (err) {
console.log("Error", tag);
}
}
uid = window.location.pathname.match(/\d+/)[0];
tags = await (
await fetch(`/ajax/user/${uid}/illusts/bookmark/tags?lang=en`)
).json();
for (let obj of tags.body.public) {
debug(obj.tag)
}
for (let obj of tags.body.private) {
debug(obj.tag)
}
It just gives "undefined"
Also I made another account and it works there so yeah, something's wrong with my tags or account
According to another bug report I found that there might be special character % in your tags which led to the failure. I would fix that in the next update.
Script stopped working completely. I tried multiple browsers, but it just doesn't wanna work for some reason :(
I tried using inkognito, different browsers, disabling adblocks, reinstalling script, deleting and installing script, reinstalling tumpermonkey and such