2017-11-03 15 views
1

Googleはクロムアプリのサポートを終了しているので最近、Postmanはクロムアプリを廃止し、ネイティブアプリを導入しました。クロムアプリからネイティブアプリに郵便受けの履歴をコピーするにはどうすればよいですか?

私はpostman chromeアプリからネイティブアプリに切り替える途中です。

クロームアプリからネイティブアプリに履歴をコピーするにはどうすればよいですか。同期は機能しません。 データをエクスポートするオプションがありますが、履歴はエクスポートされません。

すべてのアイデア?

答えて

2

これを検索している間、私はthisポストを参照して非常に有用です。 このコードを共有してくれたStephanに感謝します。 履歴をクロームアプリからネイティブアプリにコピーするには、次の手順に従います。

//In Chrome DevTools on the background page of the Postman extension... 
 

 
//A handy helper method that lets you save data from the console to a file 
 
(function(console){ 
 

 
    console.save = function(data, filename){ 
 

 
     if(!data) { 
 
      console.error('Console.save: No data') 
 
      return; 
 
     } 
 

 
     if(!filename) filename = 'console.json' 
 

 
     if(typeof data === "object"){ 
 
      data = JSON.stringify(data, undefined, 4) 
 
     } 
 

 
     var blob = new Blob([data], {type: 'text/json'}), 
 
      e = document.createEvent('MouseEvents'), 
 
      a = document.createElement('a') 
 

 
     a.download = filename 
 
     a.href = window.URL.createObjectURL(blob) 
 
     a.dataset.downloadurl = ['text/json', a.download, a.href].join(':') 
 
     e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null) 
 
     a.dispatchEvent(e) 
 
    } 
 
})(console) 
 

 

 
var req = indexedDB.open('postman') 
 

 
//Wait for that to finish 
 

 
var db = req.result 
 
var r = db.transaction(["requests"],"readwrite").objectStore('requests').getAll() 
 

 
//Wait for that to finish 
 

 
//This will download a text file with your history 
 
console.save(JSON.stringify(r.result), 'postman-requests-export.json') 
 

 

 
//Switch to standalone app and open the dev console 
 

 
var req = indexedDB.open('postman') 
 

 
//Wait for that to finish 
 

 
var db = req.result 
 

 
var data = //Paste the text from the file exported above 
 

 
data.forEach(function(a){db.transaction(["requests"],"readwrite").objectStore('requests').add(a)}) 
 

 
//Restart Postman

注:

1.To使用デベロッパーツールChromeアプリにあなたが chrome://flagsflag


で次のフラグを有効にする必要があります2.Thenちょうど右クリックあなたのクロム郵便配達員のアプリを調べてください。

3.あなたのネイティブアプリでDevToolsに移動するにはCtrl + Shift + I(表示 - > showDevTools)

関連する問題