Twitter Timeline Auto Update

Updates the twitter timeline automatically when new tweets can be shown.

什么是Twitter Timeline Auto Update?

Twitter Timeline Auto Update是由https://systemcluster.me开发的Chrome扩展程序,该扩展的主要功能是“Updates the twitter timeline automatically when new tweets can be shown.”。

扩展截图

screenshot

下载Twitter Timeline Auto Update扩展crx文件

下载Twitter Timeline Auto Update扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Twitter Auto Update updates the twitter timeline automatically, removing the need of the additional user interaction each time new tweets should be shown.

By default the extension only updates the timeline while it isn't scrolled down, an option is provided to enable unconditional updates.                    

扩展基本信息

名称 Twitter Timeline Auto Update Twitter Timeline Auto Update
ID ddbjabcmjjifognjcopebcllgpbdjlbm
官方URL https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm
简介 Updates the twitter timeline automatically when new tweets can be shown.
文件大小 23.5 KB
安装次数 1,085
当前版本 0.3
更新时间 2018-07-28
上架时间 2018-07-28
评分 3.33/5 共9次评分
开发者 https://systemcluster.me
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Timeline Auto Update",
    "short_name": "Twitter Refresh",
    "description": "Updates the twitter timeline automatically when new tweets can be shown.",
    "version": "0.3",
    "options_ui": {
        "page": "chrome\/content\/settings_inline.html",
        "chrome_style": true
    },
    "icons": {
        "64": "chrome\/skin\/icon64.png",
        "128": "chrome\/skin\/icon128.png",
        "256": "chrome\/skin\/icon256.png"
    },
    "background": {
        "scripts": [
            "lib\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "lib\/inject.js"
            ],
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/twitter.com\/*"
    ]
}