Strave Image Downloader

Allows easy download of image from Strava

Cos'è Strave Image Downloader?

Strave Image Downloader è un'estensione di Chrome sviluppata da chris, e la sua funzione principale è "Allows easy download of image from Strava".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Strave Image Downloader

Scarica i file di estensione Strave Image Downloader 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

                        Downloader for Strava Images

Once the image is open on the screen, click the button from the Chrome extensions bar.                    

Informazioni di Base sull'Estensione

Nome Strave Image Downloader Strave Image Downloader
ID clmbibbgmnmdlhdhcfigfmoffjhcddhn
URL Ufficiale https://chromewebstore.google.com/detail/strave-image-downloader/clmbibbgmnmdlhdhcfigfmoffjhcddhn
Descrizione Allows easy download of image from Strava
Dimensione del File 40.78 KB
Conteggio Installazioni 115
Versione Corrente 1.0
Ultimo Aggiornamento 2020-11-10
Data di Pubblicazione 2020-11-09
Sviluppatore chris
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Strave Image Downloader",
    "version": "1.0",
    "description": "Allows easy download of image from Strava",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.strava.com\/*",
                "*:\/\/strava.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content-StravaImageDownloader.js"
            ]
        }
    ],
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "background-StravaImageDownloader.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon48.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}