這支 bookmarklet 只是寫好玩的,在 Firefox 的 Chrome URL 執行,就可以在電腦裡存一個文字檔,真是方便(所以最好別讓來路不明的 bookmarklet 做這種事)。

使用步驟:

  1. 將 bookmarklet 加進書籤 → 匯出 FireGestures 手勢對應
  2. 在網址列輸入 chrome://firegestures/content/prefs.xul 進入 FireGestures 選項。
  3. 點選剛剛加入的書籤,就會出現對話框詢問選項:

    設定輸出選項

  4. 選擇要把文字檔存到哪裡。

    另存新檔(畫面剪裁過)

  5. 完成後檔案就存好了。

    完成訊息

  6. 把文字檔拖曳進 Firefox,看看結果。

    完成畫面(其實是文字檔)

疑難排解:

只有在 FireGestures 1.1.5 測試,日後作者隨便改點東西我可能就爆了,所以有疑難也不會排解啦。


原始碼拆解:

  1. var FGTreeDumper = {  
  2.   
  3. dump: function(){  
  4.     
  5.   var fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker);  
  6.   var charset = "UTF-8";  
  7.   var os = Cc["@mozilla.org/intl/converter-output-stream;1"].createInstance(Ci.nsIConverterOutputStream);  
  8.   var fos = Cc["@mozilla.org/network/file-output-stream;1"].createInstance(Ci.nsIFileOutputStream);  
  9.   
  10.   fp.init(window, null, fp.modeSave);  
  11.   fp.defaultExtension='txt';  
  12.   fp.defaultString='FireGesturesTreeDump';  
  13.   fp.appendFilters(fp.filterText);  
  14.     
  15.   /* 
  16.    *  1: 忽略未使用項目 
  17.    *  2: 忽略 type 欄位 
  18.    *  4: 忽略 flag 欄位 
  19.    *  8: 忽略「命令」欄位 
  20.   */  
  21.   var option = prompt('- 忽略未使用的項目,請選 1\n- 忽略 type 資料,請選 2\n- 忽略 flag 資料(例:firefox3)請選 4\n- 忽略「命令」資料,請選 8\n- 綜合選項,請將各選項數字相加,例如 15\n\n請選擇,或不輸入以使用預設選項:');  
  22.   
  23.   if (fp.show() != fp.returnCancel) {  
  24.     if (fp.file.exists()) fp.file.remove(true);  
  25.     fos.init(fp.file, 0x02 | 0x08 | 0x20, 0666, 0);  
  26.     var data = '';  
  27.     var mappings = gMappingsArray;  
  28.     mappings.forEach(function(item){  
  29.       if( ! ((option==1||option==3||option==5||option==7||option==9||option==11||option==15) && item[kDirectionCol]=='') ) {  
  30.         var cell = [];  
  31.         item.forEach(function(col,idx){  
  32.           if(   ! ((option==2||option==3||option==6||option==7||option==10||option==11||option==14||option==15) && idx==kTypeCol)  
  33.              && ! ((option==4||option==5||option==6||option==7||option==12||option==13||option==14||option==15) && idx==kFlagsCol)  
  34.              && ! ((option==8||option==9||option==10||option==11||option==12||option==13||option==14||option==15) && idx==kCommandCol)  
  35.             ) {  
  36.             cell.push(col);  
  37.           }  
  38.         });  
  39.         data += cell.join('\t') + '\n';  
  40.       }  
  41.     });  
  42.     os.init(fos, charset, 0, 0x0000);  
  43.     os.writeString(data);  
  44.     os.close();  
  45.     fos.close();  
  46.     alert('已完成。');  
  47.   }  
  48. }  
  49.   
  50. };  
  51.   
  52. FGTreeDumper.dump();