Basecamp Attachment Downloader

Download Basecamp attachments efficiently in batches.

Co to jest Basecamp Attachment Downloader?

Basecamp Attachment Downloader to rozszerzenie Chrome opracowane przez Mito, a jego główną funkcją jest „Download Basecamp attachments efficiently in batches.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Basecamp Attachment Downloader

Pobierz pliki rozszerzeń Basecamp Attachment Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Basecamp Attachment Downloader Basecamp Attachment Downloader
ID gnldacecpdkihjdgajnamlfamfpjphbk
Oficjalny URL https://chromewebstore.google.com/detail/basecamp-attachment-downl/gnldacecpdkihjdgajnamlfamfpjphbk
Opis Download Basecamp attachments efficiently in batches.
Rozmiar pliku 17.05 KB
Liczba instalacji 63
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2021-07-24
Data Publikacji 2021-07-16
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Mito
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://mito.hu/
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}