Skip to content

codesnippets for the google keep lab chrome extension (brew our own features)

Notifications You must be signed in to change notification settings

coderofsalvation/google-keep-lab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Google Keep Lab is a chrome extension for Google Keep which allows you to brew your own features. For example:

NOTE: for questions etc email to [email protected]

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

About

codesnippets for the google keep lab chrome extension (brew our own features)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published