Hello. I checked you scripts and was wondering if you could help me with something, Do you know how to make the browser think that I don't have flash installed using a userscript? I tried
I know there is a "trick" to make it think that you are on android or something like that but that replaces the JWplayer with the default browser player and that player causses issues with other scripts and things in my pc that I would like to avoid.
Request
Hello. I checked you scripts and was wondering if you could help me with something, Do you know how to make the browser think that I don't have flash installed using a userscript? I tried
Object.defineProperty(navigator, 'plugins', {
get: function () {
return { length: 0 };
}
});
but it does not work. It's for the option 1 player on this site which doesn't work unless you make it load the html5 version http://animeflv.net/ver/sakamoto-desu-ga-7.html
I know there is a "trick" to make it think that you are on android or something like that but that replaces the JWplayer with the default browser player and that player causses issues with other scripts and things in my pc that I would like to avoid.
Thanks for your time.