Strava feed filter

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

Strava feed filter란 무엇입니까?

Strava feed filter은(는) yemble에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide virtual rides, commutes and other cruft from Activity Feed."입니다.

확장 프로그램 스크린샷

screenshot

Strava feed filter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

2021-09-08 Updated for recent markup changes.                    

확장 프로그램 기본 정보

이름 Strava feed filter Strava feed filter
ID apgekmclgmnmpmbpofncpclmladojgbf
공식 URL https://chrome.google.com/webstore/detail/apgekmclgmnmpmbpofncpclmladojgbf
설명 Hide virtual rides, commutes and other cruft from Activity Feed.
파일 크기 44.71 KB
설치 횟수 172
현재 버전 2.4.2
최근 업데이트 2021-09-09
출시 날짜 2017-10-16
평점 3.40/5 총 5 개의 평점
개발자 yemble
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/yemble/chrome-strava-filter
지원되는 언어 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\/*"
            ]
        }
    ]
}