2017-11-03 115 views
1

由於Google現在正在結束對Chrome應用程序的支持。最近郵遞員不贊成他們的Chrome應用程序,並推出了一個本地應用程序。如何將郵遞員歷史記錄從Chrome應用複製到本機應用?

我正在從postman chrome應用程序切換到本地應用程序。

如何將我的Chrome應用程序的歷史記錄複製到本機應用程序。同步不起作用。 有一個選項可以導出數據,但不會導出歷史記錄。

任何想法?

回答

2

所以,當我搜索這個,我遇到了this後,這是非常有益的。 感謝stephan分享此代碼。 請按照以下步驟將您的歷史記錄從Chrome應用複製到本機應用。

//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

注:

在Chrome應用中使用1.To你DevTools將需要啓用以下標誌
chrome://flagsflag

2.然後只需右鍵點擊並檢查你的Chrome郵遞員應用程序。

3.在您的本地應用程序上的用戶DevTools ctrl + shift + I(view-> showDevTools)

相關問題