Auto-switch to Latest Tweets for Twitter

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

Qu'est-ce que Auto-switch to Latest Tweets for Twitter ?

Auto-switch to Latest Tweets for Twitter est une extension Chrome développée par Unknown, et sa fonction principale est "This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Auto-switch to Latest Tweets for Twitter

Téléchargez les fichiers d'extension Auto-switch to Latest Tweets for Twitter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Auto-switch to Latest Tweets for Twitter Auto-switch to Latest Tweets for Twitter
ID dnjgjckjnbdecolmjdooahpcmihdmked
URL Officiel https://chromewebstore.google.com/detail/auto-switch-to-latest-twe/dnjgjckjnbdecolmjdooahpcmihdmked
Description This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage
Taille du Fichier 10.4 KB
Nombre d'Installations 1,098
Version Actuelle 1.0.1
Dernière Mise à Jour 2019-07-28
Date de Publication 2019-07-27
Évaluation 4.75/5 Total 4 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}