Strave Image Downloader
Allows easy download of image from Strava
Strave Image Downloader क्या है?
Strave Image Downloader chris द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows easy download of image from Strava"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Strave Image Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Downloader for Strava Images Once the image is open on the screen, click the button from the Chrome extensions bar.
एक्सटेंशन की मूल जानकारी
नाम | 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" } } |