Popular Post wetguy321 67 Posted October 1, 2023 Popular Post Share Posted October 1, 2023 I've written the following code for quickly grabbing videos off of Eroprofile, and thought I'd share. Simply paste the following code into the console (accessible by pressing ctrl+shift+i) and press enter, and a link to a downloadable version of the video will appear in the top left of the screen let a = document.createElement('a'); a.href = $('.pageContentLeftWide source').get()[0].src; a.style="position:fixed;z-index:1000;left:0;top:0;font-size:10rem;color:black;"; a.textContent="link!"; document.body.append(a); Make sure that console is selected once you've pressed ctrl+shift+i to open the developer tools 6 1 Link to post
Sophie 24,410 Posted October 1, 2023 Share Posted October 1, 2023 Nifty! I just use a Firefox extension or yt-dlp but this is really cool. 1 Link to post
Gin 47 Posted October 2, 2023 Share Posted October 2, 2023 (edited) Thank you! Hope you don't mind me messing with the code a little bit. This works on mobile browsers should you enable the desktop mode and paste it into the URL bar. Or you can make a bookmarklet to make things simple. If everything works correctly, the download button below the video becomes green and redirects to the downloadable video. javascript:(function(){let a=document.getElementsByClassName('la-download')[0].parentElement;a.onclick='';a.setAttribute('href',$('.pageContentLeftWide source').get()[0].src);a.setAttribute('style','filter:invert(100%)')})() Edited October 2, 2023 by Gin 1 Link to post
Skutty 88 Posted October 2, 2023 Share Posted October 2, 2023 I just right-click and save the video Link to post
wetguy321 67 Posted October 3, 2023 Author Share Posted October 3, 2023 8 hours ago, pguy2981 said: Y'all need to teach me your ways. Happy hacktober lol Can we get a code explanation though? I would love a detailed overview of each piece of the original code since I don't code in...JavaScript right? Yeah sure The first line creates an HTML 'a' (anchor) element, which you can think of as a link, and gives it the name a (which is used to refer to that element in the rest of the code) The second line gets a list of 'source' elements under elements with the 'pageContentLeftWide' class (there is only one, and it's the source for the main video), and gets the 'src' atribute of that element, which is the address of the video. It then sets the 'href' (destination) of our a element to that address, so that when it is clicked on, it leads to the video. This line uses jQuery, not pure vanilla JavaScript, but Eroprofile does too. The third line is just some styling. position: fixed makes it always in the same place regardless of scrolling, z-index: 1000 puts it on top of everything else (z-index is like 'height'), left and top of 0 put it in the top left, font-size: 10rem makes it big, and color: black makes it black (the default link color can blend into the header) The fourth line sets the text of the link to 'link!' The last line adds the link to the page, making it visible. happy hacktober! 1 1 Link to post
dougm 74 Posted October 3, 2023 Share Posted October 3, 2023 I use a 3rd party downloader. Link to post
onit7891 15 Posted October 10, 2023 Share Posted October 10, 2023 you can also try this site: https://9xbuddy.com/ just copy-paste the link. works also for some other pages (but not all). Link to post
amysmith37 4 Posted October 18, 2023 Share Posted October 18, 2023 I would like more links too Link to post
Efromark 104 Posted October 18, 2023 Share Posted October 18, 2023 I use Firefox with Video Downloadhelper, works like a charm 👌 1 Link to post
dougm 74 Posted October 20, 2023 Share Posted October 20, 2023 On 10/11/2023 at 9:56 AM, onit7891 said: you can also try this site: https://9xbuddy.com/ just copy-paste the link. works also for some other pages (but not all). That's the one I use. Link to post
ForgotPass 39 Posted November 25, 2023 Share Posted November 25, 2023 You can just hold shift and press right click. Link to post
this is interesting 156 Posted December 20, 2023 Share Posted December 20, 2023 Now can that be applied to thisvid? Link to post
gldenwetgoose 21,487 Posted December 20, 2023 Share Posted December 20, 2023 4 hours ago, this is interesting said: Now can that be applied to thisvid? The various methods quoted do depend on which browser you're using in some cases - like the 'shift-right-click'. But I have found that Thisvid have many, if not most of their clips in simple mp4 format. Super easy to save, rather than other sites that have them hidden away and an online player. I'm sure I've already posted my technique somewhere using Chrome without the need for any add-ins. But only works for sites with mp4 clips or similar: If it's a site that plays an advert first, then skip past that so you've got the actual clip showing on screen (it being paused is fine). Open 'More Tools > Developer Tools' Click on the first (top right icon) in the Developer Tools pane. Like an arrow pointing into a box. That icon becomes highlighted. Click on the video itself. In the console, the html source including that clip will be shown. Right click and 'open in new tab' or '...window' Then you can right click and 'save as...' Link to post
this is interesting 156 Posted December 20, 2023 Share Posted December 20, 2023 Cool....now how about on a phone 🤔 Link to post
gldenwetgoose 21,487 Posted December 20, 2023 Share Posted December 20, 2023 38 minutes ago, this is interesting said: Cool....now how about on a phone 🤔 Let us know when you work it out.... 😉 I guess there must be apps for it ? Link to post
Remi 1,034 Posted December 21, 2023 Share Posted December 21, 2023 On 12/20/2023 at 9:36 AM, this is interesting said: Cool....now how about on a phone 🤔 The 'Soul' browser also works on phones. Automatically offers you a download button for any video except yt. Thisvid etc. Almost anything. Even tiktoks once you open them in the browser. Link to post
this is interesting 156 Posted December 22, 2023 Share Posted December 22, 2023 I'm looking to see about watching the videos that are private on thisvids. Would it work for that? Link to post
Sophie 24,410 Posted December 22, 2023 Share Posted December 22, 2023 52 minutes ago, this is interesting said: I'm looking to see about watching the videos that are private on thisvids. Would it work for that? No. Like I said before, if it is private, the only way you can view it is either become friends with the user, hope they make it public, or find it elsewhere. There is no getting around a video being private. 1 Link to post
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now