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によって開発されたChromeの拡張機能で、その主な機能は「This tiny extension will switch you back to Latest Tweets automatically every time you load Twitter homepage」です。

拡張機能のスクリーンショット

screenshot
screenshot

Auto-switch to Latest Tweets for Twitter拡張機能のCRXファイルをダウンロード

Auto-switch to Latest Tweets for Twitter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
            ]
        }
    ]
}