STRAVINI

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

STRAVINI란 무엇입니까?

STRAVINI은(는) stravini.extension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience."입니다.

확장 프로그램 스크린샷

screenshot

STRAVINI 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 STRAVINI STRAVINI
ID ilogdlddgndehmpabkafohhfapaopgkd
공식 URL https://chrome.google.com/webstore/detail/stravini/ilogdlddgndehmpabkafohhfapaopgkd
설명 Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.
파일 크기 44.32 KB
설치 횟수 2,000
현재 버전 0.0.1.30
최근 업데이트 2019-06-26
출시 날짜 2019-06-26
평점 4.63/5 총 24 개의 평점
개발자 stravini.extension
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
        ]
    }
}