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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |