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.”。
扩展截图
下载Strava feed filter扩展crx文件
下载Strava feed filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Optionally hide virtual (eg trainer) activities, commutes and other cruft from the activity feed. 2021-09-08 Updated for recent markup changes.
扩展基本信息
名称 | |
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\/*" ] } ] } |