如何从Google Keep导入或在本地保存所有内容?


14

我在Google Keep中有很多笔记。我可以将此信息本地保存在计算机上还是导入到MS Word中?不是每个音符都分开而是全部在一起?


(显然也没有办法通过Android应用程序执行此操作。)
ale

1
googledevelopers.blogspot.com/2014/01/…两天前发布了适用于Android的Google Drive API,希望Web接口/ API在此之后很快问世。
silpol 2014年

Answers:


6

如果按Ctrl+ A,它将通过自己的界面选择所有单独的音符。在顶部,黄色的单杠将变为深灰色。中心分组的最右边的按钮是三个垂直点。如果您单击该按钮,则可以选择复制到Google文档。单击该按钮,将出现一个小对话框,该对话框很快将为您提供一个标题为“ OPEN DOC”的链接,该链接将带您到Google云端硬盘上的新“ Google Keep文档”。如果您有很多注释,则全部加载将花费很长时间,但是您可以将其作为纯文本进行复制和粘贴,或者对Microsoft Word使用Google Docs的内置导出选项。

(就我个人而言,我希望有一种方法可以使它们在本文档中分开,或将它们分别导出为单独的注释,但是据我所知,目前尚无法实现。这对于实际导出到其他文档很有用记笔记的应用程序并保持数据完整无缺。不幸的是,Google Takeout仍然不支持它,但我想那将是最终单独保存笔记的方法。


是的,看起来像是正确的答案
Alexan 2015年


0

您可以尝试使用此脚本(我尚未对其进行测试):

/* Vedant Misra (vedantmisra.com) (github.com/vedant)
*
* Script for exporting Google Keep note files.
*
* This does not handle attachments or checklists, only note files. Downloads
* each note to a .txt file named for the note's title.
*
* To use this, go to https://drive.google.com/keep/ and wait for the page to
* fully load all of your saved notes; scroll to the bottom to confirm they're
* loaded. Then paste the below in your URI bar, go to the start of the line,
* prepend what you pasted with "javascript:" without quote marks, and hit enter.
*
* REVISED for Google Keep update. 2014-09-14
*/

(function(){"use strict";var e=document.createElement("SCRIPT");e.src="//code.jquery.com/jquery-latest.min.js";e.type="text/javascript";document.getElementsByTagName("head")[0].appendChild(e);var t=function(e){if(window.jQuery){e(jQuery)}else{window.setTimeout(function(){t(e)},100)}};t(function(e){(function(e){e.save=function(t,n){if(!t){e.error("Console.save: No data");return}if(!n){n="console.txt"}if(typeof t==="object"){t=JSON.stringify(t,undefined,4)}var r=new Blob([t],{type:"text/text"}),i=document.createEvent("MouseEvents"),s=document.createElement("a");s.download=n;s.href=window.URL.createObjectURL(r);s.dataset.downloadurl=["text/text",s.download,s.href].join(":");i.initMouseEvent("click",true,false,window,0,0,0,0,0,false,false,false,false,0,null);s.dispatchEvent(i)}})(console);var t=e(".IZ65Hb-YPqjbf.h1U9Be-YPqjbf"),n=e(".IZ65Hb-YPqjbf.r4nke-YPqjbf");for(var r=1;r<=t.length;r++){t[r].click();var i=e('.IZ65Hb-YPqjbf.h1U9Be-YPqjbf[contenteditable="true"');console.save(i[1].innerText,n[r].innerHTML+".txt")}alert(t.length-1+" files downloaded.")})})()

(资源)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.