Saves the tabs open in the current window as a set of Tana nodes onto the clipboard in tana-paste format.
If you just want to use this extension without bothering with the source code and all that jazz, you can download the latest release.zip
file from the Releases
area (right hand side of the github project page). Then, go to the Chrome extension manager (chrome://extensions
) and turn on Developer mode
. This will give you access to the Load unpacked
button and you can pick the downloaded zip file.
To bootstrap this git repo into Chrome locally, first clone the repo.
Then run npm install
and npm run build
.
Go to Chrome extension manager, turn on Developer mode and load unpacked
the dist
directory.
The format used on the clipboard is very simple:
%%tana%%
- Tab Workspace #workspace
- Title of site #website
- Description:: <from site metadata>
- Url:: <of open tab>
This extension was created with Extension CLI!
If you find this software helpful star or sponsor this project.
Commands | Description |
---|---|
npm run start |
build extension, watch file changes |
npm run build |
generate release version |
npm run docs |
generate source code docs |
npm run clean |
remove temporary files |
npm run test |
run unit tests |
npm run sync |
update config files |
For CLI instructions see User Guide →
Extension Developer guides
- Getting started with extension development
- Manifest configuration: version 2 - version 3
- Permissions reference
- Chrome API reference
Extension Publishing Guides