Twitter Infinite Scroll Disabler
Disable Twitter's automatic infinite scrolling and replace it with a "show more" button.
什么是Twitter Infinite Scroll Disabler?
Twitter Infinite Scroll Disabler是由Marcos Pereira开发的Chrome扩展程序,该扩展的主要功能是“Disable Twitter's automatic infinite scrolling and replace it with a "show more" button.”。
扩展截图
下载Twitter Infinite Scroll Disabler扩展crx文件
下载Twitter Infinite Scroll Disabler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Update: This extention was deprecated when Twitter recently made an (invisible) update to their UI. If you'd like to make it work again, feel free to submit a pull request here: https://github.com/marcospgp/twitter-infinite-scroll-disabler Tired of getting lost in Twitter's infinite feed and allowing it to steal your attention and productivity? This extension adds a "Show more" button that prevents you from mindlessly scrolling without being aware of it. Creating a checkpoint every few tweets where you have to make the conscious decision of whether to keep scrolling or to decide you've read enough and want to go do something else. Social media websites compete in an economy of attention - they make money by keeping your eyes on the platform. It doesn't matter whether it adds anything of real value to your life or makes you happier. They won't look out for our well-being. So why don't we?
扩展基本信息
名称 | |
ID | jmeadkldfpocoldelepenlicgdlinfeo |
官方URL | https://chrome.google.com/webstore/detail/twitter-infinite-scroll-d/jmeadkldfpocoldelepenlicgdlinfeo |
简介 | Disable Twitter's automatic infinite scrolling and replace it with a "show more" button. |
文件大小 | 41.93 KB |
安装次数 | 213 |
当前版本 | 1.1 |
更新时间 | 2020-04-27 |
上架时间 | 2020-04-27 |
评分 | 2.63/5 共8次评分 |
开发者 | Marcos Pereira |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Infinite Scroll Disabler", "description": "Disable Twitter's automatic infinite scrolling and replace it with a \"show more\" button.", "version": "1.1", "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "css": [ "style.css" ], "js": [ "jquery-3.4.1.slim.min.js", "content-script.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |