1+4 または 2+4 (または 1+2+4) です。ページに挿入されるスクリプトを作成する必要があり、Firefox の Greasemonkey スクリプトまたは Chorme 拡張機能として使用できます。
スクリプトを機能させるために Greasemonkey が必要な Firefox とは異なり、単純なスクリプト ファイルを拡張機能ウィンドウにドラッグすることで、Chrome 拡張機能として直接使用できます。拡張機能を整理する方法に関する公式ドキュメントをいくつか追加することで、完全な Chrome 拡張機能にすることができます。
stackoverflow を使用している場合にのみスクリプトを挿入するサンプル スクリプト:
script.user.js
if(document.URL.indexOf("http://stackoverflow.com")!=-1) {
var d = document.createElement("div");
d.innerHTML = "Hello World! This is my first injected script";
d.className = "red"; // supposing it's defined, wouldn't hurt anyways
// otherwise
d.style.color = "#f00";
document.body.appendChild(d);
}
ファイルを保存し、Chrome の「拡張機能」ウィンドウにドラッグしてから、stackoverflow をリロードします。