Twitter Timeline Auto Update

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

Twitter Timeline Auto Update là gì?

Twitter Timeline Auto Update là một tiện ích mở rộng Chrome được phát triển bởi https://systemcluster.me, và tính năng chính của nó là "Updates the twitter timeline automatically when new tweets can be shown.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitter Timeline Auto Update

Tải xuống các tệp mở rộng Twitter Timeline Auto Update dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitter Timeline Auto Update Twitter Timeline Auto Update
ID ddbjabcmjjifognjcopebcllgpbdjlbm
URL Chính Thức https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm
Mô tả Updates the twitter timeline automatically when new tweets can be shown.
Kích Thước Tệp 23.5 KB
Số Lần Cài Đặt 1,085
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2018-07-28
Ngày Phát Hành 2018-07-28
Đánh Giá 3.33/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://systemcluster.me
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}