Pixiv收藏夹自动标签

自动为Pixiv收藏夹内图片打上已有的标签,并可以搜索收藏夹

< Feedback op Pixiv收藏夹自动标签

Recensie: Slecht - het script werkt niet

§
Geplaatst: 20-01-2024

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

§
Geplaatst: 25-01-2024

Auto-labeling just doesn't appear

philimaoMaker
§
Geplaatst: 13-03-2024

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.

§
Geplaatst: 04-04-2024

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.

§
Geplaatst: 04-04-2024

I turned off all the extensions but tampermonkey:

philimaoMaker
§
Geplaatst: 06-04-2024

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)
}
§
Geplaatst: 16-05-2024

It just gives "undefined"

§
Geplaatst: 16-05-2024

Also I made another account and it works there so yeah, something's wrong with my tags or account

philimaoMaker
§
Geplaatst: 16-08-2024

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.

Reactie plaatsen

Log in om antwoord te geven.