Basecamp Attachment Downloader

Download Basecamp attachments efficiently in batches.

Basecamp Attachment Downloader란 무엇입니까?

Basecamp Attachment Downloader은(는) Mito에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download Basecamp attachments efficiently in batches."입니다.

확장 프로그램 스크린샷

screenshot

Basecamp Attachment Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Basecamp Attachment Downloader Basecamp Attachment Downloader
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\/*"
            ]
        }
    ]
}