Basecamp Attachment Downloader
Download Basecamp attachments efficiently in batches.
O que é Basecamp Attachment Downloader?
Basecamp Attachment Downloader é uma extensão do Chrome desenvolvida por Mito, e sua principal característica é "Download Basecamp attachments efficiently in batches.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Basecamp Attachment Downloader
Baixe arquivos de extensão Basecamp Attachment Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | gnldacecpdkihjdgajnamlfamfpjphbk |
URL Oficial | https://chromewebstore.google.com/detail/basecamp-attachment-downl/gnldacecpdkihjdgajnamlfamfpjphbk |
Descrição | Download Basecamp attachments efficiently in batches. |
Tamanho do Arquivo | 17.05 KB |
Contagem de Instalações | 63 |
Versão Atual | 1.0.1 |
Última Atualização | 2021-07-24 |
Data de Publicação | 2021-07-16 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Mito |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://mito.hu/ |
Idiomas Suportados | 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\/*" ] } ] } |