Strave Image Downloader

Allows easy download of image from Strava

Что такое Strave Image Downloader?

Strave Image Downloader - это расширение Chrome, разработанное chris, и его основная функция - "Allows easy download of image from Strava".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Strave Image Downloader

Скачайте файлы расширений 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"
    }
}