sindresorhus/refined-github

Send ZIP Button #4549

jamiebuilds posted onGitHub

GitHub's "Download ZIP" repo feature is a great way of sharing code without sharing history or granting any access to the repo.

But ZIP files can sometimes be difficult to share on larger repos... emails often bounce, uploading them to dropbox/etc gets you back into permissions issues and is more work.

So I was wondering if it'd make sense to build this into Refined GitHub as a button:

Screen Shot 2021-07-08 at 2 07 19 PM

There are a number of different encrypted file sharing services like https://wormhole.app/ I asked if they were considering adding an API, and they said they probably will.


This would only be for private repos since public ones already have a shareable URL like

// https://github.com/sindresorhus/refined-github/archive/refs/heads/main.zip

To implement something like this we’d have to download the linked zip in the browser itself (to use its cookies) and then pass the blob to something like Wormhole. I see several problems with this:

  • it requires an extra permission on the extension for a Wormhole API
  • "Why is the Send ZIP button asking permissions to a scary-sounding Wormhole site?" means we need further UI pieces to explain what's going on
  • we’d have to implement a transload progress UI on the page itself for larger repos
  • it sounds like a pretty niche situation
  • it also sounds like it’s something that would be "useful" on any website

For these reasons I think it’d be best to implement this as its own extension, ideally even as a context menu that works on any link. This would probably be a simple standalone extension, but as part of RG it would require UI and extra behavior that isn’t worth it.

posted by fregante over 3 years ago

Fund this Issue

$0.00
Funded

Pull requests