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.”。
扩展截图
下载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.
扩展基本信息
名称 | |
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" ] } } |