firefox userChrome.js greasemonkeyスクリプトスレ 2
■ このスレッドは過去ログ倉庫に格納されています
0807名無しさん@お腹いっぱい。
2007/10/21(日) 01:46:51ID:QGUplYUl0動きます。
好きなところに置けばいい。
エディタの設定とかの問題かと
この辺↓
_editor: null,
_tmpdir: null,
_dir_separator: null,
_os: null,
_ext: "txt",
_encode: 'UTF-8',
init: function(){
//このif文の中の_editor,_tmpdirは,自分の環境に合わせて修正のこと
if(window.navigator.platform.toLowerCase().indexOf("win") != -1){
//this._editor = "C:\\WINDOWS\\notepad.exe"; /* windows */
this._editor = "C:\\progra~1\\hidemaru\\hidemaru.exe"; /* windows */
this._dir_separator = '\\'; /* windows */
this._os = 'win'; /* windows */
}else{
this._editor = "/bin/vi"; /* unix */
this._dir_separator = '/'; /* unix */
this._os = 'unix'; /* unix */
}
■ このスレッドは過去ログ倉庫に格納されています