Basecamp Attachment Downloader
Download Basecamp attachments efficiently in batches.
Qu'est-ce que Basecamp Attachment Downloader ?
Basecamp Attachment Downloader est une extension Chrome développée par Mito, et sa fonction principale est "Download Basecamp attachments efficiently in batches.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Basecamp Attachment Downloader
Téléchargez les fichiers d'extension Basecamp Attachment Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | gnldacecpdkihjdgajnamlfamfpjphbk |
URL Officiel | https://chromewebstore.google.com/detail/basecamp-attachment-downl/gnldacecpdkihjdgajnamlfamfpjphbk |
Description | Download Basecamp attachments efficiently in batches. |
Taille du Fichier | 17.05 KB |
Nombre d'Installations | 63 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2021-07-24 |
Date de Publication | 2021-07-16 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Mito |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://mito.hu/ |
Langues Prises en Charge | 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\/*" ] } ] } |