Strave Image Downloader

Allows easy download of image from Strava

什么是Strave Image Downloader?

Strave Image Downloader是由chris开发的Chrome扩展程序,该扩展的主要功能是“Allows easy download of image from Strava”。

扩展截图

screenshot

下载Strave Image Downloader扩展crx文件

下载Strave Image Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Downloader for Strava Images

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

扩展基本信息

名称 Strave Image Downloader Strave Image Downloader
ID clmbibbgmnmdlhdhcfigfmoffjhcddhn
官方URL https://chromewebstore.google.com/detail/strave-image-downloader/clmbibbgmnmdlhdhcfigfmoffjhcddhn
简介 Allows easy download of image from Strava
文件大小 40.78 KB
安装次数 115
当前版本 1.0
更新时间 2020-11-10
上架时间 2020-11-09
开发者 chris
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}