Twitter 媒体下载

一键保存视频/图片

< 脚本Twitter 媒体下载的反馈

提问/评论

§
发表于:2022-07-14

點進單篇推特後下載按鈕消失

推特列表 按鈕正常顯示
https://i.imgur.com/zcgoZG0.png

點進去後 下載按鈕消失
https://i.imgur.com/xQaNYTo.png

關閉擋廣告插件 關閉其他腳本 也是一樣

不知道什麼時候可以修正?

§
发表于:2022-07-14

補上瀏覽器:Firefox 102.0.1

§
发表于:2022-07-14

今早8点前后出现的这个问题,7点半我还在用着,吃个早餐后不行了

§
发表于:2022-07-14

I am having the same problem, the download button does not show up if you clicked on the tweet but it will only show up in your twitter feed.

§
发表于:2022-07-17

Twitter added new role="group" div before buttons.

Replace line 80 for temporary use.

- let btn_group = article.querySelector('div[role="group"]');
+ let groups = article.querySelectorAll('div[role="group"]');
+ let btn_group = groups[groups.length - 1];
§
发表于:2022-07-17

Twitter added new role="group" div before buttons.

Replace line 80 for temporary use.

- let btn_group = article.querySelector('div[role="group"]');
+ let groups = article.querySelectorAll('div[role="group"]');
+ let btn_group = groups[groups.length - 1];

It works, thanks.

天音作者
§
发表于:2022-07-17

已修正

发表回复

登录以发表回复。