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文件

下載STRAVINI擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        ]
    }
}