在Firefox擴展,我們可以這樣做:Chrome擴展:修改用戶代理字符串
var _prefService = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
var httpHandler = Cc["@mozilla.org/network/protocol;1?name=http"].getService(Ci.nsIHttpProtocolHandler);
setCharPref("general.useragent.override",httpHandler.userAgent + " OurUAToken/1.0");
要在用戶代理字符串的末尾添加「OurUAToken/1.0」。
我們如何在Google Chrome中複製此行爲?
另外,看看這篇文章:http://weblog.bocoup.com/spoofing-user-agent-with-chromes-webrequest-api –
偉大的,但不幸的是我不能在這個實驗性的API使用,項目。但你的回答仍然正確。謝謝 –