Strava feed filter

Hide virtual rides, commutes and other cruft from Activity Feed.

O que é Strava feed filter?

Strava feed filter é uma extensão do Chrome desenvolvida por yemble, e sua principal característica é "Hide virtual rides, commutes and other cruft from Activity Feed.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Strava feed filter

Baixe arquivos de extensão Strava feed filter 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

                        Optionally hide virtual (eg trainer) activities, commutes and other cruft from the activity feed.

2021-09-08 Updated for recent markup changes.                    

Informações Básicas da Extensão

Nome Strava feed filter Strava feed filter
ID apgekmclgmnmpmbpofncpclmladojgbf
URL Oficial https://chrome.google.com/webstore/detail/apgekmclgmnmpmbpofncpclmladojgbf
Descrição Hide virtual rides, commutes and other cruft from Activity Feed.
Tamanho do Arquivo 44.71 KB
Contagem de Instalações 172
Versão Atual 2.4.2
Última Atualização 2021-09-09
Data de Publicação 2017-10-16
Classificação 3.40/5 Total de 5 Avaliações
Desenvolvedor yemble
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/yemble/chrome-strava-filter
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Strava feed filter",
    "description": "Hide virtual rides, commutes and other cruft from Activity Feed.",
    "version": "2.4.2",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "strava2-f1.128px.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.1.1.min.js",
                "app.js"
            ],
            "matches": [
                "*:\/\/www.strava.com\/dashboard",
                "*:\/\/www.strava.com\/dashboard?*",
                "*:\/\/www.strava.com\/dashboard\/*"
            ]
        }
    ]
}