-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c16c3eb
commit ce2e2a7
Showing
9 changed files
with
132 additions
and
51 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<template> | ||
|
||
</template> | ||
|
||
<script lang="ts"> | ||
export default {}; | ||
</script> | ||
|
||
<style lang="less" scoped></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<template> | ||
<div class="settings"> | ||
<a href="https://github.com/betterRunner/context-note" target="_blank"> | ||
<img class="settings-icon" :src="githubLogoSrc" height="30" /> | ||
</a> | ||
<More direction="row" size="4" color="#666" placement="top" :opers="[]" /> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import More from '../shared/more.vue'; | ||
export default { | ||
components: { | ||
More, | ||
}, | ||
setup() { | ||
const githubLogoSrc = chrome.runtime.getURL("assets/github-logo.png"); | ||
return { | ||
githubLogoSrc, | ||
}; | ||
}, | ||
}; | ||
</script> | ||
|
||
<style lang="less" scoped> | ||
.settings { | ||
position: absolute; | ||
width: 100%; | ||
height: 50px; | ||
bottom: 0px; | ||
border: 1px solid rgba(100, 108, 255, 0.8); | ||
box-shadow: rgba(100, 108, 255, 1.0) 0px 6px 18px 0px; | ||
background: #fff; | ||
border-bottom-left-radius: 10px; | ||
border-bottom-right-radius: 10px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
.settings-icon { | ||
margin-left: 20px; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,4 @@ | ||
- [x] store note in chrome.storage | ||
- [x] jump to the note context | ||
- [x] store tag in chrome.storage | ||
- [x] show the rects at initial state if this page has | ||
- [x] delete note | ||
- [x] url change clear the highlights | ||
- [x] open link brings the note-id so can jump to note also | ||
- [x] delete the tag while deleting a note who is the only one that owns this tag | ||
- [x] searching notes | ||
- [x] tag search auto focus | ||
- [ ] export/import notes' data by json | ||
- [ ] more precise rects selection rather than coor (select the real dom by text) | ||
- [ ] screenshot features | ||
- https://javascript.plainenglish.io/a-better-alternative-to-html2canvas-in-vuejs-3-e0686755d56e |