Is it possible to spoof Chrome plugins?
I noticed that their names are stored in Preferences
and Local State
file in /Users/mainuser/Library/Application\ Support/Google/Chrome/Default/Preferences
and /Users/mainuser/Library/Application\ Support/Google/Chrome/Local\ State
respectively (on Mac), but manually changing the contents of these files gets treated as file corruption. Any idea how to spoof it?
Plugin information are publicly available and are easily inspected with something like this:
var x=navigator.plugins.length; // store the total no of plugin stored
console.log(x);
var txt="";
for(var i=0;i<x;i++)
{
txt=navigator.plugins[i].name;
console.log(txt);
}