Twitter Auto Refresh

Auto refresh timeline on twitter.com when you scroll to the top. The refresh interval is 3 seconds by default. ※Warning Be…

¿Qué es Twitter Auto Refresh?

Twitter Auto Refresh es una extensión de Chrome desarrollada por goodbaikin, y su función principal es "Auto refresh timeline on twitter.com when you scroll to the top. The refresh interval is 3 seconds by default. ※Warning Be…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Twitter Auto Refresh

Descarga archivos de extensión Twitter Auto Refresh en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Auto refresh timeline on twitter.com when you scroll to the top. The refresh interval is 3 seconds by default.

※Warning 
Be careful about setting extremely low refresh interval. You might reach the api limit. 

CHANGELOG
- Fixed the bug auto refresh works in other tabs(e.g. search, notifications, etc).                    

Información Básica de la Extensión

Nombre Twitter Auto Refresh Twitter Auto Refresh
ID aidapiigacnbamggokpnphddajiilfjp
URL Oficial https://chromewebstore.google.com/detail/twitter-auto-refresh/aidapiigacnbamggokpnphddajiilfjp
Descripción Auto refresh timeline on twitter.com when you scroll to the top. The refresh interval is 3 seconds by default. ※Warning Be…
Tamaño del Archivo 19.67 KB
Cantidad de Instalaciones 3,058
Versión Actual 1.1.0
Última Actualización 2021-02-22
Fecha de Publicación 2021-02-21
Calificación 3.80/5 Total de 10 Calificaciones
Desarrollador goodbaikin
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Auto Refresh",
    "descriptions": "Auto reload timeline on twitter.com",
    "permissions": [
        "storage"
    ],
    "manifest_version": 2,
    "version": "1.1.0",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/home"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ]
}