Strava unfollow
Automation extension for Strava
什麼是Strava unfollow?
Strava unfollow是由michaelrblood開發的Chrome擴展程式,該擴展的主要功能是“Automation extension for Strava”。
擴展截圖
下載Strava unfollow擴展crx文件
下載Strava unfollow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Strava unfollow |
ID | bdlfpeflmphenmbcehcmckjoiomojghe |
官方網址 | https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe |
簡介 | Automation extension for Strava |
檔案大小 | 244 KB |
安裝次數 | 180 |
目前版本 | 1.0 |
更新時間 | 2020-12-24 |
上架時間 | 2020-11-20 |
評分 | 2.18/5 共 17 次評分 |
開發者 | michaelrblood |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |