指定時間で自動的にカーソルを隠すスクリプト書いたので張り
拡張機能スレでお題出してくれた人が見てくれるかどうか

var ucjs_hide_cursor = { _delay: 1000,
handleEvent: function(event) {
if(this._timeout)clearTimeout(this._timeout);
var doc = event.originalTarget.ownerDocument;
if(doc instanceof XULDocument)return window.setCursor("auto");
var body = doc.getElementsByTagName("body")[0];
if(this._stored_cursor) {
body.style.cursor = this._stored_cursor;
this._stored_cursor = null;
}
this._timeout = setTimeout(function(){
this._stored_cursor = body.style.cursor;
window.setCursor("none");
},this._delay,this);
}
}
window.addEventListener("mousemove", ucjs_hide_cursor, true);