Basecamp Attachment Downloader

Download Basecamp attachments efficiently in batches.

Wat is Basecamp Attachment Downloader?

Basecamp Attachment Downloader is een Chrome-extensie ontwikkeld door Mito, en de belangrijkste functie is "Download Basecamp attachments efficiently in batches.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Basecamp Attachment Downloader

Download Basecamp Attachment Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Basecamp Attachment Downloader Basecamp Attachment Downloader
ID gnldacecpdkihjdgajnamlfamfpjphbk
Officiële URL https://chromewebstore.google.com/detail/basecamp-attachment-downl/gnldacecpdkihjdgajnamlfamfpjphbk
Beschrijving Download Basecamp attachments efficiently in batches.
Bestandsgrootte 17.05 KB
Aantal Installaties 63
Huidige Versie 1.0.1
Laatst Bijgewerkt 2021-07-24
Publicatiedatum 2021-07-16
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Mito
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://mito.hu/
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}