Google에서 가져 오기 또는 로컬로 모두 저장하는 방법은 무엇입니까?


14

Google Keep에 많은 메모가 있습니다. 이 정보를 컴퓨터에 로컬로 저장하거나 MS Word로 가져올 수 있습니까? 모든 노트가 개별적이지 않고 모두 함께 있습니까?


(Android 앱에서도이를 수행 할 수있는 방법은 없습니다.)
ale

1
googledevelopers.blogspot.com/2014/01/… Android 용 Google 드라이브 API는 이틀 전에 게시되었으며, 웹 인터페이스 / API가 곧 출시 될 것으로 기대합니다.
silpol

답변:


6

Ctrl+ 를 누르면 A자체 인터페이스가있는 모든 개별 음표가 선택됩니다. 상단에 노란색 가로 막대가 진한 회색이됩니다. 중앙 그룹의 가장 오른쪽 버튼은 세 개의 수직 점입니다. 클릭 하면 Google 문서복사 할 수 있는 옵션이 있습니다. 이를 클릭하면 곧 "OPEN DOC"이라는 링크를 제공하는 작은 대화 상자가 있으며,이를 통해 Google 드라이브의 새로운 "Google Keep Document"로 이동합니다. 메모가 많은 경우 메모를 모두로드하는 데 시간이 오래 걸리지 만이를 일반 텍스트로 복사하여 붙여 넣거나 Microsoft Word의 기본 제공 내보내기 옵션을 사용할 수 있습니다.

(개인적으로, 나는이 문서에서 그것들을 분리하거나 개별적인 노트로 그것들을 내보내는 방법이 있었으면 좋겠지 만, 지금까지는 말할 수없는 한 불가능합니다. 이것은 실제로 다른 사람에게 내보내는데 유용 할 것입니다 안타깝게도 Google 테이크 아웃은 여전히이 기능을 지원하지 않지만 결국 개별적으로 메모를 저장하는 방법이라고 생각합니다.)


예, 정답 인 것 같습니다
Alexan

5

이제 https://google.com/takeout으로 이동 하여 옵션으로 유지를 선택할 수 있습니다 . 그러면 모든 컨텐츠가 포함 된 하이퍼 링크 HTML 노트의 아카이브가 생성됩니다.


예, Keep으로부터 데이터를 얻는 매우 흥미로운 방법
Alexan

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.")})})()

(출처)

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.