Strava unfollow

Automation extension for Strava

什么是Strava unfollow?

Strava unfollow是由michaelrblood开发的Chrome扩展程序,该扩展的主要功能是“Automation extension for Strava”。

扩展截图

screenshot

下载Strava unfollow扩展crx文件

下载Strava unfollow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A simple tool to follow those that follow you and unfollow those that do not.
If this is useful,   leave a comment - in the future we will create the ability to build a list followers from others pages - and then auto follow them.

To use it,   go to strava and then click the extension button to turn it on.                    

扩展基本信息

名称 Strava unfollow Strava unfollow
ID bdlfpeflmphenmbcehcmckjoiomojghe
官方URL https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe
简介 Automation extension for Strava
文件大小 244 KB
安装次数 180
当前版本 1.0
更新时间 2020-12-24
上架时间 2020-11-20
评分 2.18/5 共17次评分
开发者 michaelrblood
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Strava unfollow",
    "version": "1.0",
    "description": "Automation extension for Strava",
    "browser_action": {
        "default_title": "Start extension"
    },
    "icons": {
        "16": "icon\/unfollow-light.jpg",
        "48": "icon\/unfollow-light.jpg",
        "128": "icon\/unfollow-light.jpg"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/athletes\/*\/follows?*",
                "https:\/\/www.strava.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.strava.com\/",
                "https:\/\/www.strava.com\/dashboard",
                "https:\/\/www.strava.com\/onboarding"
            ],
            "js": [
                "js\/checkLogin.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.strava.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}