Strava unfollow
Automation extension for Strava
Was ist Strava unfollow?
Strava unfollow ist eine Chrome-Erweiterung, die von michaelrblood entwickelt wurde, und ihr Hauptmerkmal ist "Automation extension for Strava".
Erweiterungsscreenshots
Strava unfollow-Erweiterungs-CRX-Datei herunterladen
Laden Sie Strava unfollow-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Strava unfollow |
ID | bdlfpeflmphenmbcehcmckjoiomojghe |
Offizielle URL | https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe |
Beschreibung | Automation extension for Strava |
Dateigröße | 244 KB |
Installationsanzahl | 180 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-12-24 |
Veröffentlichungsdatum | 2020-11-20 |
Bewertung | 2.18/5 Insgesamt 17 Bewertungen |
Entwickler | michaelrblood |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |