Twitter Timeline Auto Update

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

Wat is Twitter Timeline Auto Update?

Twitter Timeline Auto Update is een Chrome-extensie ontwikkeld door https://systemcluster.me, en de belangrijkste functie is "Updates the twitter timeline automatically when new tweets can be shown.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Twitter Timeline Auto Update

Download Twitter Timeline Auto Update-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Twitter Timeline Auto Update Twitter Timeline Auto Update
ID ddbjabcmjjifognjcopebcllgpbdjlbm
Officiële URL https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm
Beschrijving Updates the twitter timeline automatically when new tweets can be shown.
Bestandsgrootte 23.5 KB
Aantal Installaties 1,085
Huidige Versie 0.3
Laatst Bijgewerkt 2018-07-28
Publicatiedatum 2018-07-28
Beoordeling 3.33/5 Totaal 9 Beoordelingen
Ontwikkelaar https://systemcluster.me
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}