Reputation: 879
I have an add-on package for Firefox. It executes javascripts on certain websites, but it executes Javascript only for HTTP; I need it to be executed in HTTPS too. Please help me.
This is my addon package: Addon in Zip.
Upvotes: 0
Views: 67
Reputation: 60414
The first line in wefwqfeqwef
in youtube.js
is this:
if ('https:' == document.location.protocol) return false;
So, it looks like the code is specifically rejecting https
URLs.
Upvotes: 1