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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disable Twitter's automatic infinite scrolling and replace it with a "show more" button."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter Infinite Scroll Disabler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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?                    

एक्सटेंशन की मूल जानकारी

नाम Twitter Infinite Scroll Disabler Twitter Infinite Scroll Disabler
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"
    }
}