Basecamp Attachment Downloader
Download Basecamp attachments efficiently in batches.
什么是Basecamp Attachment Downloader?
Basecamp Attachment Downloader是由Mito开发的Chrome扩展程序,该扩展的主要功能是“Download Basecamp attachments efficiently in batches.”。
扩展截图
下载Basecamp Attachment Downloader扩展crx文件
下载Basecamp Attachment Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Sifting through and saving a million attachments on a Basecamp thread is no fun. If only there was a tool to simplify downloading them. Let's say with an extra button next to the comments. Wait a sec, this handy extension is exactly that! This extension was produced by Mito. We are a digital agency from Budapest, Hungary. When we are not crafting extensions besides our daily work and on Hackathon events, we create clever things for clients all around the globe.
扩展基本信息
名称 | |
ID | gnldacecpdkihjdgajnamlfamfpjphbk |
官方URL | https://chromewebstore.google.com/detail/basecamp-attachment-downl/gnldacecpdkihjdgajnamlfamfpjphbk |
简介 | Download Basecamp attachments efficiently in batches. |
文件大小 | 17.05 KB |
安装次数 | 63 |
当前版本 | 1.0.1 |
更新时间 | 2021-07-24 |
上架时间 | 2021-07-16 |
评分 | 5.00/5 共3次评分 |
开发者 | Mito |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://mito.hu/ |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Basecamp Attachment Downloader", "description": "Download Basecamp attachments efficiently in batches.", "version": "1.0.1", "manifest_version": 3, "icons": { "16": "logo_16.png", "32": "logo_32.png", "48": "logo_48.png", "128": "logo_128.png" }, "content_scripts": [ { "run_at": "document_end", "all_frames": true, "matches": [ "https:\/\/*.basecamp.com\/*" ], "css": [ "styles.css" ], "js": [ "main.js" ] } ], "web_accessible_resources": [ { "resources": [ "icon.svg" ], "matches": [ "https:\/\/*.basecamp.com\/*" ] } ] } |