Auto-switch to Latest Tweets for Twitter

This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage

Auto-switch to Latest Tweets for Twitter क्या है?

Auto-switch to Latest Tweets for Twitter Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage"।

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

screenshot
screenshot

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

crx प्रारूप में Auto-switch to Latest Tweets for Twitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        New Twitter for Web showing you algorithmic feed regularly. If you prefer to see your tweets in chronological order, you have to switch back manually every time.

This tiny extension will switch you back to Latest Tweets automatically every time you load the Twitter homepage.

Important note: script only works when the page is (re)loaded, but Twitter is navigating between its pages without reloading. So imagine a situation: you left your notifications tab hanging for a while and then come back and hit the home button. Now Twitter will show you the home page without reloading page itself. In this case, the extension would not know that it have to do its job, even if Twitter decided to show you algorithmic feed again. 

But here is the good news — you don't have to reach this tiny buttons again, just reload the page with cmd/ctrl + R and enjoy your latest tweets.                    

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

नाम Auto-switch to Latest Tweets for Twitter Auto-switch to Latest Tweets for Twitter
ID dnjgjckjnbdecolmjdooahpcmihdmked
आधिकारिक URL https://chromewebstore.google.com/detail/auto-switch-to-latest-twe/dnjgjckjnbdecolmjdooahpcmihdmked
विवरण This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage
फ़ाइल का आकार 10.4 KB
स्थापना संख्या 1,098
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2019-07-28
प्रकाशन तिथि 2019-07-27
रेटिंग 4.75/5 कुल 4 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto-switch to Latest Tweets for Twitter",
    "description": "This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage",
    "version": "1.0.1",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/home",
                "https:\/\/mobile.twitter.com\/home"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ]
}