Strava unfollow
Automation extension for Strava
Strava unfollowคืออะไร?
Strava unfollow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย michaelrblood และคุณลักษณะหลักของมันคือ "Automation extension for Strava"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Strava unfollow
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" ] } |