Twitter Timeline Auto Update

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

What is Twitter Timeline Auto Update?

Twitter Timeline Auto Update is a Chrome extension developed by https://systemcluster.me, and its main feature is "Updates the twitter timeline automatically when new tweets can be shown.".

Extension Screenshots

screenshot

Download Twitter Timeline Auto Update Extension CRX File

Download Twitter Timeline Auto Update extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Twitter Timeline Auto Update Twitter Timeline Auto Update
ID ddbjabcmjjifognjcopebcllgpbdjlbm
Official URL https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm
Description Updates the twitter timeline automatically when new tweets can be shown.
File Size 23.5 KB
Installation Count 1,085
Current Version 0.3
Last Updated 2018-07-28
Publish Date 2018-07-28
Rating 3.33/5 Total 9 Ratings
Developer https://systemcluster.me
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}