public void OnDocumentComplete(object pDisp, ref object URL) { if (URL.ToString().Contains("www.google.com")) { HTMLDocument document = (HTMLDocument)webBrowser.Document; IHTMLElement body = (IHTMLElement)((IHTMLElementCollection) document.all.tags("body")).item(null, 0); IHTMLScriptElement scriptObject = (IHTMLScriptElement)document.createElement("script"); scriptObject.text = "alert('The script will add to the page ');"; scriptObject.src = @"\Resource\extension.js"; scriptObject.text ="container.appendChild(input);"; ((HTMLHeadElement)body).appendChild((IHTMLDOMNode)scriptObject); } }