I'm trying to make a bookmarklet for use on youtube and other video sites, to easily get information from the video and save it elsewhere.
From today, apparently, I can no longer do this, since youtube is forcibly connected to the https connection and from what I read in the Chrome console window, the bookmarklet does not start on the https page. Is there a workaround?
Here is the edited code:
javascript:(function(){var jsCode=document.createElement('script');jsCode.setAttribute('src','http://[mysite]/b/enter.php?i=userid&r='+Math.random());document.body.appendChild(jsCode);}());
source share