Basecamp Attachment Downloader
Download Basecamp attachments efficiently in batches.
Cos'è Basecamp Attachment Downloader?
Basecamp Attachment Downloader è un'estensione di Chrome sviluppata da Mito, e la sua funzione principale è "Download Basecamp attachments efficiently in batches.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Basecamp Attachment Downloader
Scarica i file di estensione Basecamp Attachment Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | gnldacecpdkihjdgajnamlfamfpjphbk |
URL Ufficiale | https://chromewebstore.google.com/detail/basecamp-attachment-downl/gnldacecpdkihjdgajnamlfamfpjphbk |
Descrizione | Download Basecamp attachments efficiently in batches. |
Dimensione del File | 17.05 KB |
Conteggio Installazioni | 63 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2021-07-24 |
Data di Pubblicazione | 2021-07-16 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Mito |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://mito.hu/ |
Lingue Supportate | 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\/*" ] } ] } |