Pixiv Plus

Focus on immersive experience, 1. Block ads, directly access popular pictures 2. Use user to enter the way to search 3. Search pid and uid 4. Display original image and size, picture rename, download original image | gif map | Zip|multiple map zip 5. display artist id, artist background image 6. auto load comment 7. dynamic markup work type 8. remove redirection 9. single page sort 10. control panel select desired function github: https:/ /github.com/Ahaochan/Tampermonkey, welcome to star and fo

< Feedback on Pixiv Plus

Question/comment

§
Posted: 2017-11-17

为什么没有效果

安装脚本后打开pixiv没有任何变化

AhaochanAuthor
§
Posted: 2017-11-17

请详细描述和截图说明, 以及打开F12, 选择Console控制台查看错误日志。

根据目前的线索我只能建议你按Ctrl+F5强制刷新页面,重启浏览器,重新安装脚本。

我这边是可以正常使用的。

§
Posted: 2017-11-18

请详细描述和截图说明, 以及打开F12, 选择Console控制台查看错误日志。

根据目前的线索我只能建议你按Ctrl+F5强制刷新页面,重启浏览器,重新安装脚本。

我这边是可以正常使用的。

强制刷新页面,重启浏览器,重新安装脚本尝试后均无效
可确认的问题是没有出现按UID、PID和收藏数搜索的按钮,无法查看热门图片,其它功能暂时不确定

AhaochanAuthor
§
Posted: 2017-11-18
Edited: 2017-11-18

尝试自行修改代码,大概是第27、28行。 我没有使用Firefox,如果可行,请通知我一声,修改脚本。

var pid = pixiv.context.illustId || 'unknown';
var uid = pixiv.context.userId || 'unknown';

修改为如下

var pid = pixiv && pixiv.context && pixiv.context.illustId || 'unknown';
var uid = pixiv && pixiv.context && pixiv.context.userId || 'unknown';

我使用的是Chrome+Tampermonkey。 听说Firefox的GM升级到GM4之后,规范更新了,很多旧脚本都失效了。 如果还是不行,请提供下Firefox和GM的版本号,以及当前页面的HTML代码(右键,网页源代码)。 我去下载Firefox调试下

§
Posted: 2017-11-18

修改后依然无效,错误日志如下

firefox 57.0(64位) Greasemonkey 4.0

AhaochanAuthor
§
Posted: 2017-11-18
Edited: 2017-11-18

果然。。。G点有两个,FF57和GM4。 贴吧已经炸锅了。http://tieba.baidu.com/f?kw=firefox&ie=utf-8

目前还没有较为完美的兼容方案。 请回退firefox56以及GM3试试。 或者放弃GM,使用Tampermonkey

§
Posted: 2017-11-18

改用Tampermonkey 4.5.5590后可正常使用

Post reply

Sign in to post a reply.