Basecamp Attachment Downloader
Download Basecamp attachments efficiently in batches.
Basecamp Attachment Downloader là gì?
Basecamp Attachment Downloader là một tiện ích mở rộng Chrome được phát triển bởi Mito, và tính năng chính của nó là "Download Basecamp attachments efficiently in batches.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Basecamp Attachment Downloader
Tải xuống các tệp mở rộng Basecamp Attachment Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gnldacecpdkihjdgajnamlfamfpjphbk |
URL Chính Thức | https://chromewebstore.google.com/detail/basecamp-attachment-downl/gnldacecpdkihjdgajnamlfamfpjphbk |
Mô tả | Download Basecamp attachments efficiently in batches. |
Kích Thước Tệp | 17.05 KB |
Số Lần Cài Đặt | 63 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2021-07-24 |
Ngày Phát Hành | 2021-07-16 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Mito |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://mito.hu/ |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |