Strava unfollow

Automation extension for Strava

ما هو Strava unfollow؟

Strava unfollow هو إضافة Chrome تم تطويرها بواسطة michaelrblood، والميزة الرئيسية لها هي "Automation extension for Strava".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Strava unfollow

قم بتنزيل ملفات الامتداد Strava unfollow بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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"
    ]
}