STRAVINI

Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.

¿Qué es STRAVINI?

STRAVINI es una extensión de Chrome desarrollada por stravini.extension, y su función principal es "Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión STRAVINI

Descarga archivos de extensión STRAVINI 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

                        Features:
- Clean interface: multiple activities fit one screen
- Light and Fast
- Chronological sorting or by Strava algorithm
- Filter out promotional messages, posts, challenges, club notifications, Zwift rides, short rides from the feed
- The activity description, if present, is visible directly in the feed
- Sharper font

The new version of Strava UI tends to be slow on my machine. This extension is made so that everyone can enjoy Strava, even without a powerful device.                    

Información Básica de la Extensión

Nombre STRAVINI STRAVINI
ID ilogdlddgndehmpabkafohhfapaopgkd
URL Oficial https://chrome.google.com/webstore/detail/stravini/ilogdlddgndehmpabkafohhfapaopgkd
Descripción Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.
Tamaño del Archivo 44.32 KB
Cantidad de Instalaciones 2,000
Versión Actual 0.0.1.30
Última Actualización 2019-06-26
Fecha de Publicación 2019-06-26
Calificación 4.63/5 Total de 24 Calificaciones
Desarrollador stravini.extension
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "STRAVINI",
    "description": "Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.",
    "version": "0.0.1.30",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "webRequest",
        "*:\/\/www.strava.com\/dashboard",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/*"
            ],
            "css": [
                "stravini.css"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "jquery.initialize.min.js",
                "stravini.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}