Strava unfollow
Automation extension for Strava
O que é Strava unfollow?
Strava unfollow é uma extensão do Chrome desenvolvida por michaelrblood, e sua principal característica é "Automation extension for Strava".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Strava unfollow
Baixe arquivos de extensão Strava unfollow no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Strava unfollow |
ID | bdlfpeflmphenmbcehcmckjoiomojghe |
URL Oficial | https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe |
Descrição | Automation extension for Strava |
Tamanho do Arquivo | 244 KB |
Contagem de Instalações | 180 |
Versão Atual | 1.0 |
Última Atualização | 2020-12-24 |
Data de Publicação | 2020-11-20 |
Classificação | 2.18/5 Total de 17 Avaliações |
Desenvolvedor | michaelrblood |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |