joshuatz / linkedin-to-jsonresume

Browser extension to turn a LinkedIn profile page into a JSON Resume export.
https://joshuatz.com/projects/web-stuff/linkedin-profile-to-json-resume-exporter/
MIT License
238 stars 59 forks source link

Can I use on my own app? #71

Closed ralyodio closed 2 years ago

ralyodio commented 2 years ago

I’m looking to use this in my svelte app to export LinkedIn profile as json resume.

Do you have an example?

I’m not interested in browser extension.

joshuatz commented 2 years ago

I mean, technically there is nothing stopping anyone from using this outside of a browser extension - I've kept the extension part of it pretty isolated, and the main.js entry-point does not import any extension specific code. The README mentions this - you can actually copy the output of /build/main.js and paste it into the browser console, without the extension installed, and it should work.

That being said, due to many reasons (this was one of my earlier programming projects, I did not foresee the interest in it, etc.), I did a bad job of making this modular, so you would probably need to do some refactoring to get it to fit your needs.

ralyodio commented 2 years ago

That’s fine. Does it still work?

joshuatz commented 2 years ago

@ralyodio Yes, it still works via main.js if that is what you mean. Otherwise I'm not sure exactly what the question is...