Strava Auto Kudos

Automatically give kudos to your feed

Cos'è Strava Auto Kudos?

Strava Auto Kudos è un'estensione di Chrome sviluppata da Mathieu Benhalima, e la sua funzione principale è "Automatically give kudos to your feed".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Strava Auto Kudos

Scarica i file di estensione Strava Auto Kudos in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        When you go to your feed, the extension will automatically give kudos to all the activities it sees.
When you click on the button at the bottom right of the screen, the extension will load as much activity as possible to give them a kudos.                    

Informazioni di Base sull'Estensione

Nome Strava Auto Kudos Strava Auto Kudos
ID gpifcdlpbfehjkkojfhmlfgplalikdjf
URL Ufficiale https://chromewebstore.google.com/detail/strava-auto-kudos/gpifcdlpbfehjkkojfhmlfgplalikdjf
Descrizione Automatically give kudos to your feed
Dimensione del File 98.39 KB
Conteggio Installazioni 1,583
Versione Corrente 1.5.1
Ultimo Aggiornamento 2023-05-16
Data di Pubblicazione 2021-08-06
Valutazione 4.64/5 Totale 11 Valutazioni
Sviluppatore Mathieu Benhalima
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Strava Auto Kudos",
    "description": "Automatically give kudos to your feed",
    "version": "1.5.1",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "strava.png"
    },
    "host_permissions": [
        "https:\/\/www.strava.com\/*"
    ],
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.strava.com\/*"
            ],
            "css": [
                "assets\/css\/style.css"
            ],
            "js": [
                "assets\/js\/jquery-2.2.3.min.js",
                "assets\/js\/jquery-ui.min.js",
                "assets\/js\/main.js"
            ]
        }
    ]
}