https://github.com/coderofsalvation/google-keep-lab
codesnippets for the google keep lab chrome extension (brew our own features)
https://github.com/coderofsalvation/google-keep-lab
browser chrome extension gkeep google googlekeep javascript keep
Last synced: about 1 year ago
JSON representation
codesnippets for the google keep lab chrome extension (brew our own features)
- Host: GitHub
- URL: https://github.com/coderofsalvation/google-keep-lab
- Owner: coderofsalvation
- Created: 2019-04-26T16:00:26.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T19:06:51.000Z (almost 6 years ago)
- Last Synced: 2025-02-12T06:22:33.912Z (about 1 year ago)
- Topics: browser, chrome, extension, gkeep, google, googlekeep, javascript, keep
- Size: 350 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
[Google Keep Lab](https://chrome.google.com/webstore/detail/google-keep-lab-add-brew/jeeibcjiohghhohialnafmjhpjkiijbm) is a chrome extension for [Google Keep](https://keep.google.com) which allows you to brew your own features.
For example:

> NOTE: for questions etc email to incoming+2wa-google-keep-lab-11618170-issue-@incoming.gitlab.com
## JSON Export per list
var $export = document.createElement('div')
var $ta = document.createElement('textarea')
$ta.style.marginLeft = '10px'
$ta.style.marginTop = '10px'
$ta.innerHTML = JSON.stringify({
title: noteTitle,
items: items.map( (i) => i.innerText ),
tags:tags
},null,2)
$ta.onclick = function(e){
e.stopPropagation();
e.preventDefault()
return false
}
//$ta.style.display = 'none'
$ta.style.height = '90px'
$ta.style.width = '300px'
$ta.style.position = 'absolute'
$ta.style.zIndex = '50000'
$ta.style.borderRadius = '5px'
$export.appendChild($ta)
// renders the badges
el.innerHTML = render() + $export.innerHTML
> TODO: copy/paste seems hard, any ideas welcome