STRAVINI

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

O que é STRAVINI?

STRAVINI é uma extensão do Chrome desenvolvida por stravini.extension, e sua principal característica é "Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão STRAVINI

Baixe arquivos de extensão STRAVINI no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome STRAVINI STRAVINI
ID ilogdlddgndehmpabkafohhfapaopgkd
URL Oficial https://chrome.google.com/webstore/detail/stravini/ilogdlddgndehmpabkafohhfapaopgkd
Descrição Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.
Tamanho do Arquivo 44.32 KB
Contagem de Instalações 2,000
Versão Atual 0.0.1.30
Última Atualização 2019-06-26
Data de Publicação 2019-06-26
Classificação 4.63/5 Total de 24 Avaliações
Desenvolvedor stravini.extension
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}