Strava unfollow

Automation extension for Strava

Cos'è Strava unfollow?

Strava unfollow è un'estensione di Chrome sviluppata da michaelrblood, e la sua funzione principale è "Automation extension for Strava".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Strava unfollow

Scarica i file di estensione Strava unfollow in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Strava unfollow Strava unfollow
ID bdlfpeflmphenmbcehcmckjoiomojghe
URL Ufficiale https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe
Descrizione Automation extension for Strava
Dimensione del File 244 KB
Conteggio Installazioni 180
Versione Corrente 1.0
Ultimo Aggiornamento 2020-12-24
Data di Pubblicazione 2020-11-20
Valutazione 2.18/5 Totale 17 Valutazioni
Sviluppatore michaelrblood
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}