Strave Image Downloader
Allows easy download of image from Strava
Was ist Strave Image Downloader?
Strave Image Downloader ist eine Chrome-Erweiterung, die von chris entwickelt wurde, und ihr Hauptmerkmal ist "Allows easy download of image from Strava".
Erweiterungsscreenshots
Strave Image Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Strave Image Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Downloader for Strava Images Once the image is open on the screen, click the button from the Chrome extensions bar.
Grundlegende Informationen zur Erweiterung
Name | Strave Image Downloader |
ID | clmbibbgmnmdlhdhcfigfmoffjhcddhn |
Offizielle URL | https://chromewebstore.google.com/detail/strave-image-downloader/clmbibbgmnmdlhdhcfigfmoffjhcddhn |
Beschreibung | Allows easy download of image from Strava |
Dateigröße | 40.78 KB |
Installationsanzahl | 115 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-11-10 |
Veröffentlichungsdatum | 2020-11-09 |
Entwickler | chris |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |