只需要一个js文件 v2ex.js
```
var script = document.createElement("script");
script.type = "text/javascript";
script.innerText='if(typeof dispatch==="function"){function dispatch(){var q=document.getElementById("q");if(q.value!=""){var url="
http://cn.bing.com/search?q=site%3Av2ex.com%2Ft%20"+q.value;if(navigator.userAgent.indexOf("iPad")>-1||navigator.userAgent.indexOf("iPhone")>-1||navigator.userAgent.indexOf("iPhone")>-1){location.href=url;}else{window.open(url,"_blank");}return false;}else{return false;}}}';
document.getElementsByTagName('body')[0].appendChild(script);
```
manifest.json
```
"content_scripts": [
{
"matches": [
"*://*.v2ex.com/*",
"*://
v2ex.com/*"
],
"run_at": "document_end",
"js": ["js/v2ex.js"]
}
]
```