Twitter Timeline Auto Update

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

Apa itu Twitter Timeline Auto Update?

Twitter Timeline Auto Update adalah ekstensi Chrome yang dikembangkan oleh https://systemcluster.me, dan fitur utamanya adalah "Updates the twitter timeline automatically when new tweets can be shown.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Twitter Timeline Auto Update

Unduh file ekstensi Twitter Timeline Auto Update dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Twitter Timeline Auto Update Twitter Timeline Auto Update
ID ddbjabcmjjifognjcopebcllgpbdjlbm
URL Resmi https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm
Deskripsi Updates the twitter timeline automatically when new tweets can be shown.
Ukuran File 23.5 KB
Jumlah Instalasi 1,085
Versi Saat Ini 0.3
Terakhir Diperbarui 2018-07-28
Tanggal Publikasi 2018-07-28
Penilaian 3.33/5 Total 9 Penilaian
Pengembang https://systemcluster.me
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
    ]
}