Strava unfollow

Automation extension for Strava

Co to jest Strava unfollow?

Strava unfollow to rozszerzenie Chrome opracowane przez michaelrblood, a jego główną funkcją jest „Automation extension for Strava”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Strava unfollow

Pobierz pliki rozszerzeń Strava unfollow w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Strava unfollow Strava unfollow
ID bdlfpeflmphenmbcehcmckjoiomojghe
Oficjalny URL https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe
Opis Automation extension for Strava
Rozmiar pliku 244 KB
Liczba instalacji 180
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-12-24
Data Publikacji 2020-11-20
Ocena 2.18/5 Łącznie 17 Oceny
Deweloper michaelrblood
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}