Strave Image Downloader

Allows easy download of image from Strava

What is Strave Image Downloader?

Strave Image Downloader is a Chrome extension developed by chris, and its main feature is "Allows easy download of image from Strava".

Extension Screenshots

screenshot

Download Strave Image Downloader Extension CRX File

Download Strave Image Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Downloader for Strava Images

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

Extension Basic Information

Name Strave Image Downloader Strave Image Downloader
ID clmbibbgmnmdlhdhcfigfmoffjhcddhn
Official URL https://chromewebstore.google.com/detail/strave-image-downloader/clmbibbgmnmdlhdhcfigfmoffjhcddhn
Description Allows easy download of image from Strava
File Size 40.78 KB
Installation Count 115
Current Version 1.0
Last Updated 2020-11-10
Publish Date 2020-11-09
Developer chris
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}