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