Strava unfollow

Automation extension for Strava

Apa itu Strava unfollow?

Strava unfollow adalah ekstensi Chrome yang dikembangkan oleh michaelrblood, dan fitur utamanya adalah "Automation extension for Strava".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Strava unfollow

Unduh file ekstensi Strava unfollow dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Strava unfollow Strava unfollow
ID bdlfpeflmphenmbcehcmckjoiomojghe
URL Resmi https://chromewebstore.google.com/detail/strava-unfollow/bdlfpeflmphenmbcehcmckjoiomojghe
Deskripsi Automation extension for Strava
Ukuran File 244 KB
Jumlah Instalasi 180
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-12-24
Tanggal Publikasi 2020-11-20
Penilaian 2.18/5 Total 17 Penilaian
Pengembang michaelrblood
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}