Strava unfollow

Automation extension for Strava

Qu'est-ce que Strava unfollow ?

Strava unfollow est une extension Chrome développée par michaelrblood, et sa fonction principale est "Automation extension for Strava".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Strava unfollow

Téléchargez les fichiers d'extension Strava unfollow au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Strava unfollow Strava unfollow
ID bdlfpeflmphenmbcehcmckjoiomojghe
URL Officiel https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe
Description Automation extension for Strava
Taille du Fichier 244 KB
Nombre d'Installations 180
Version Actuelle 1.0
Dernière Mise à Jour 2020-12-24
Date de Publication 2020-11-20
Évaluation 2.18/5 Total 17 Évaluations
Développeur michaelrblood
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}