This method simplify extracting url to real video streaming services by copying them to clipboard. Designated for people who know what they want and have skills to do so.
Once upon a time there was a way to execute custom JavaScript code in context of indicated site. It was called Bookmarket. Thanks to this feature you could do tedious work in a minute.
For example - you go to the page, fired up bookmarklet and grab link to your favourite movie directly to your clipboard. It's just a drop in the ocean of possibilities but it good shows the bigger picture.
- Create any new bookmark that you can easily pin to your bookmarks
Optionally you can show bar with bookmarks: Three dashes in right top corner > Bookmarks and lists > Show bookmarks > Always
- Adjust or copy below code as it is:
javascript:(function(){var qwe = document.evaluate("//a[contains(., 'voe.sx')]", document, null, XPathResult.ANY_TYPE, null ).iterateNext();qwe.click();let url = document.querySelector('#player-container .btn-primary')?.href ?? document.querySelector('#player-container iframe').src;navigator.clipboard.writeText(url);})();- Edit created bookmark and in URL field paste the whole command.
- Enjoy.
- Go to any site where you want to do some action
- Click on crafted bookmark
- Done
When you understand how its done its not that complex as it is at first sight. If you know JavaScript, even better.
- It all starts with keyword:
javescript: - After that we create IIFE and place all our code inside
(function(){ # any js kod here })(); - The rest is just JS code, but with remove spaces/new lines and
;after each instruction:
javascript:(function(){
var qwe = document.evaluate("//a[contains(., 'voe.sx')]", document, null, XPathResult.ANY_TYPE, null ).iterateNext();
qwe.click();
let url = document.querySelector('#player-container .btn-primary')?.href ?? document.querySelector('#player-container iframe').src;
navigator.clipboard.writeText(url);
})();