Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Browser settings by script

Afaik, you can change/manipulate browser settings in Mozilla/Netscape browsers. For Instance "netscape.security.PrivilegeManager.enablePrivilege('someprivilege');"

Of course the user gets informed about that and needs to verify the action.

My question is, do other browser have similar functionality? IE, Safari/Chrome ?

Kind Regards

--Andy

like image 733
jAndy Avatar asked Apr 08 '10 16:04

jAndy


1 Answers

You can read about it here - http://www.mozilla.org/projects/security/components/signed-scripts.html#privs

Also example available here: http://www.mozilla.org/projects/security/components/signed-script-example.html

Browsers let extensions to interact with their core to certain level, but that's about it. You can read about Mozilla and Chrome extensions and see they interact with the browser through JavaScript, but this is only inside extensions, signed scripts and scripts located on user's hard drives.

like image 165
Ivo Sabev Avatar answered Oct 25 '22 06:10

Ivo Sabev