Strava unfollow
Automation extension for Strava
Hvad er Strava unfollow?
Strava unfollow er en Chrome-udvidelse udviklet af michaelrblood, og dens hovedfunktion er "Automation extension for Strava".
Udvidelsesskærmbilleder
Download Strava unfollow-udvidelses-CRX-fil
Download Strava unfollow-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Strava unfollow |
ID | bdlfpeflmphenmbcehcmckjoiomojghe |
Officiel URL | https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe |
Beskrivelse | Automation extension for Strava |
Filstørrelse | 244 KB |
Antal Installationer | 180 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-12-24 |
Udgivelsesdato | 2020-11-20 |
Bedømmelse | 2.18/5 Samlet 17 Bedømmelser |
Udvikler | michaelrblood |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |