Questions tagged [google-keep]

A cloud-based note storage application from Google Apps that can store voice notes, lists, images, and use widgets.

44 questions
1
vote
1 answer

sorting notes in Google Keep - gkeepapi

I've looked through the docs for gkeepapi, and there isn't any function that sorts the notes. The notes however do appear in Keep as the order printed here: import gkeepapi k = gkeeapi.Keep() k.login('xxxxx@gmail.com', pwd) gnotes =…
jason
  • 3,811
  • 18
  • 92
  • 147
1
vote
1 answer

Replicate Google Keep "Add Label" in Navigation Drawer

I tried to look for a question like this here but couldn't find one. I'm trying to implement something like Google Keep's "Add Label" in my Navigation Drawer and make that category stay permanently. I think the last part can be done with…
G_Man
  • 169
  • 1
  • 2
  • 12
1
vote
0 answers

Automate note addition to "Google keep"

i want to automatically add selected text , right click and add it as notes to keep. tried applescript but javascript doesn't seem to have good option to add notes directly. similar to Mimic onclick events in Google Keep with JavaScript Any…
Gana
  • 979
  • 3
  • 10
  • 18
1
vote
0 answers

Trigger click event on a div (maybe just relate to Google Keep)

I'm trying to click a button on Google Keep via JavaScript, but the event doesn't seem to fire/caught. It works fine with real mouse, though... I tried with its parents (and grandparents, too) but to no avail. Here is what I am trying at the…
Quang Linh Le
  • 751
  • 1
  • 7
  • 16
1
vote
1 answer

Google Keep list note from inside your app

In my app, I am writing a functionality to share a shopping list to Google Keep. For this, I use the Intent.ACTION_SEND action and set the package to the one of Google Keep. Everything works great, but I am wondering if it is possible to add an…
pinyin_samu
  • 174
  • 1
  • 12
1
vote
0 answers

Google Keep ArrayList via implicit intent

I want to share my ListView data model via an implicit intent in Google Keep. But I can't find any Intent EXTRA suitable for this purpose. Basically I'm trying to do this Intent i = new Intent(Intent.ACTION_SEND); …
observer
  • 725
  • 4
  • 10
  • 20
1
vote
3 answers
1
vote
1 answer

Rails, Angular. How to save like Google Keep

I'm making something with Rails and AngularJS (from Google). Can you help me with creation of a todo app (basic app I know how to do) that save the task like Google Keep? For example, without click? Without buttons for save? How to do?
user4412054
1
vote
2 answers

How can I add checkbox ListView like in Google Keep?

I'm looking for a ListView with checkboxes and arrangeable by drag & drop. Something like in google keep's listview: I'm new to all the part of building applications, so if it requires adding something to Eclipse, I'd love it to be attached also a…
Bimba
  • 31
  • 6
0
votes
2 answers

How should I store the data of the notes?

I made this lite version google keep app in react and was wondering how you personally would go about storing the notes data, so that anyone entering the page sees the same notes, and have the same editing capabilities(deleting the notes). Right now…
0
votes
0 answers

Is there an android Intent to add data to google keep?

I have a shopping list app and i want that the user can transfer his shopping list to google keep. Is there a way i could do that with an Intent or an API? It would appreciate if you could put a link to a tutorial
Nordic Games
  • 21
  • 1
  • 4
0
votes
1 answer

Problem: Transparent colour in recent-screens thumbnails is replaced with dark grey. (Android)

I have a transparent app. Thumbnail of my app that appears in recent screens replaces transparency with dark grey colour. I know that it's possible to have real transparency in this situation because Google Keep has it for its sharing screen (when…
0
votes
1 answer

Selenium Python Upload Files To Google Keep

How to upload image files to google keep using selenium. Please reply as soon as possible. I have tried to find the hidden input tag but it was unsuccessful and I don't want to use pyautogui or any other GUI automation framework JUST…
0
votes
1 answer

Google script for Google Keep

Is is possible to automatically share or unshare a Google Keep note using labels? e.g. if I add label Sam to a note - share it automatically with Sam. If the label is removed them unshare it. Kind regards, Vijay
0
votes
0 answers

chrome.storage.sync limits vs. Google Keep

I understand the limitations of QUOTA_BYTES_PER_ITEM and QUOTA_BYTES when using chrome.storage.sync. I'm finding them quite limiting for a annotated history related extension I am writing. I understand that local storage could avoid this problem,…