Twitter Infinite Scroll Disabler
Disable Twitter's automatic infinite scrolling and replace it with a "show more" button.
O que é Twitter Infinite Scroll Disabler?
Twitter Infinite Scroll Disabler é uma extensão do Chrome desenvolvida por Marcos Pereira, e sua principal característica é "Disable Twitter's automatic infinite scrolling and replace it with a "show more" button.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter Infinite Scroll Disabler
Baixe arquivos de extensão Twitter Infinite Scroll Disabler no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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?
Informações Básicas da Extensão
Nome | |
ID | jmeadkldfpocoldelepenlicgdlinfeo |
URL Oficial | https://chrome.google.com/webstore/detail/twitter-infinite-scroll-d/jmeadkldfpocoldelepenlicgdlinfeo |
Descrição | Disable Twitter's automatic infinite scrolling and replace it with a "show more" button. |
Tamanho do Arquivo | 41.93 KB |
Contagem de Instalações | 213 |
Versão Atual | 1.1 |
Última Atualização | 2020-04-27 |
Data de Publicação | 2020-04-27 |
Classificação | 2.63/5 Total de 8 Avaliações |
Desenvolvedor | Marcos Pereira |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |