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”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | clmbibbgmnmdlhdhcfigfmoffjhcddhn |
| 官方網址 | 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"
}
} | |