├── .env.example ├── .gitattributes ├── .github ├── dependabot.yml ├── renovate.json └── workflows │ └── release.yml ├── .gitignore ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── toolkit.code-snippets ├── LICENSE ├── README.md ├── addon ├── bootstrap.js ├── chrome │ └── content │ │ ├── 16 │ │ ├── annotate-area.svg │ │ ├── annotate-eraser.svg │ │ ├── annotate-highlight.svg │ │ ├── annotate-image.svg │ │ ├── annotate-ink.svg │ │ ├── annotate-note.svg │ │ ├── annotate-text.svg │ │ ├── annotate-underline.svg │ │ ├── chevron-8.svg │ │ ├── lock.svg │ │ ├── magnifier-2.svg │ │ ├── options.svg │ │ └── x-8.svg │ │ ├── annotation.css │ │ ├── annotationsToNote.css │ │ ├── highlightWords.css │ │ ├── icons │ │ ├── favicon.png │ │ ├── favicon@0.5x.png │ │ └── link.ico │ │ ├── preferences.xhtml │ │ ├── reader1.css │ │ ├── related.css │ │ ├── tab.xhtml │ │ └── zoteroPane.css ├── locale │ ├── en-US │ │ ├── addon.ftl │ │ ├── mainWindow.ftl │ │ └── preferences.ftl │ ├── es │ │ ├── addon.ftl │ │ ├── mainWindow.ftl │ │ └── preferences.ftl │ └── zh-CN │ │ ├── addon.ftl │ │ ├── mainWindow.ftl │ │ └── preferences.ftl ├── manifest.json └── prefs.js ├── doc ├── 2.1选中条目的右键菜单.png ├── 2.2按不同tag导出.png ├── 2.3更新了查询结果显示界面.png ├── 3.1复制批注.png ├── 3.2添加关联.png ├── 3.3显示关联的批注,点击跳转到对应pdf.png ├── 3双链操作.gif ├── 4高亮显示特定单词.png ├── 7 导出结果.png ├── 7量表操作.png ├── README-zhCN.md ├── 弹出框.png ├── 批注菜单1.png ├── 批注菜单2.png ├── 添加搜索按钮.png ├── 添加镜像站点.png └── 选择文本.png ├── eslint.config.mjs ├── package.json ├── patches ├── react-dom │ ├── index.js │ └── package.json └── react │ ├── index.js │ └── package.json ├── src ├── action │ ├── action-ExtractAbstractKeywords.ts │ ├── action-annotation-row.ts │ ├── action-getCollectionWithChildren.ts │ ├── action-getText.ts │ ├── action-highlight.ts │ ├── action-replaceColor.ts │ ├── action-searchWords.ts │ ├── action-searchWords2.ts │ ├── action-tag.ts │ ├── action-tran-annotations.ts │ └── webLibrary.ts ├── addon.ts ├── component │ ├── AnnotationMatrix.tsx │ ├── ChangeColor.tsx.txt │ ├── Config.ts │ ├── DebounceInput.tsx │ ├── FixedPopup.tsx │ ├── PickerColor.tsx.txt │ ├── PopoverPicker.css │ ├── PopoverPicker.tsx.txt │ ├── PopupRoot.tsx │ ├── common │ │ └── icons.tsx │ ├── popDiv.tsx.txt │ ├── styles.css │ ├── tagStyle.css │ ├── tagStyle.d.ts │ └── useClickOutside.tsx ├── hooks.ts ├── hooksMenuEvent.ts ├── index.ts ├── modules │ ├── AnnotationPopup.tsx │ ├── AnnotationsToNote.tsx │ ├── BackupAnnotation.tsx │ ├── DDD.tsx │ ├── MyButton.tsx │ ├── RelationHeader.tsx │ ├── annotations.tsx │ ├── examples.ts │ ├── getCitationItem.tsx │ ├── highlightWords.tsx │ ├── highligtWordsRef.md │ ├── menu.tsx │ ├── menuTools.tsx │ ├── preferenceScript.ts │ ├── preferenceScript.txt │ ├── referenceMark.tsx │ └── spaceRemove.tsx └── utils │ ├── FixedTagColors.ts │ ├── Re.js.txt │ ├── Relations.ts │ ├── RelationsTree.js.txt │ ├── cite.ts │ ├── color.ts │ ├── consoleNull.js │ ├── groupBy.ts │ ├── locale.ts │ ├── memoize2.ts │ ├── prefs.ts │ ├── sort.ts │ ├── tab.ts │ ├── uniqueBy.ts │ ├── wait.ts │ ├── window.ts │ ├── ztoolkit.ts │ └── zzlb.ts ├── tsconfig.json ├── typings └── global.d.ts └── zotero-plugin.config.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/toolkit.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/.vscode/toolkit.code-snippets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/README.md -------------------------------------------------------------------------------- /addon/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/bootstrap.js -------------------------------------------------------------------------------- /addon/chrome/content/16/annotate-area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/annotate-area.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/annotate-eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/annotate-eraser.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/annotate-highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/annotate-highlight.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/annotate-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/annotate-image.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/annotate-ink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/annotate-ink.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/annotate-note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/annotate-note.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/annotate-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/annotate-text.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/annotate-underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/annotate-underline.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/chevron-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/chevron-8.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/lock.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/magnifier-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/magnifier-2.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/options.svg -------------------------------------------------------------------------------- /addon/chrome/content/16/x-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/16/x-8.svg -------------------------------------------------------------------------------- /addon/chrome/content/annotation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/annotation.css -------------------------------------------------------------------------------- /addon/chrome/content/annotationsToNote.css: -------------------------------------------------------------------------------- 1 | #zoteroAnnotationManage-ann2note-show-tags { 2 | background: #fff; 3 | } 4 | -------------------------------------------------------------------------------- /addon/chrome/content/highlightWords.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/highlightWords.css -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/icons/favicon.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/icons/favicon@0.5x.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/link.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/icons/link.ico -------------------------------------------------------------------------------- /addon/chrome/content/preferences.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/preferences.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/reader1.css: -------------------------------------------------------------------------------- 1 | .zotero-annotation-manage-red { 2 | background: red; 3 | } 4 | -------------------------------------------------------------------------------- /addon/chrome/content/related.css: -------------------------------------------------------------------------------- 1 | .zoteroAnnotationManage-style .btn { 2 | background: #fff; 3 | } 4 | -------------------------------------------------------------------------------- /addon/chrome/content/tab.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/tab.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/zoteroPane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/chrome/content/zoteroPane.css -------------------------------------------------------------------------------- /addon/locale/en-US/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/en-US/addon.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/en-US/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/en-US/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/es/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/es/addon.ftl -------------------------------------------------------------------------------- /addon/locale/es/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/es/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/es/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/es/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/zh-CN/addon.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/zh-CN/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/locale/zh-CN/preferences.ftl -------------------------------------------------------------------------------- /addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/manifest.json -------------------------------------------------------------------------------- /addon/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/addon/prefs.js -------------------------------------------------------------------------------- /doc/2.1选中条目的右键菜单.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/2.1选中条目的右键菜单.png -------------------------------------------------------------------------------- /doc/2.2按不同tag导出.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/2.2按不同tag导出.png -------------------------------------------------------------------------------- /doc/2.3更新了查询结果显示界面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/2.3更新了查询结果显示界面.png -------------------------------------------------------------------------------- /doc/3.1复制批注.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/3.1复制批注.png -------------------------------------------------------------------------------- /doc/3.2添加关联.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/3.2添加关联.png -------------------------------------------------------------------------------- /doc/3.3显示关联的批注,点击跳转到对应pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/3.3显示关联的批注,点击跳转到对应pdf.png -------------------------------------------------------------------------------- /doc/3双链操作.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/3双链操作.gif -------------------------------------------------------------------------------- /doc/4高亮显示特定单词.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/4高亮显示特定单词.png -------------------------------------------------------------------------------- /doc/7 导出结果.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/7 导出结果.png -------------------------------------------------------------------------------- /doc/7量表操作.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/7量表操作.png -------------------------------------------------------------------------------- /doc/README-zhCN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/README-zhCN.md -------------------------------------------------------------------------------- /doc/弹出框.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/弹出框.png -------------------------------------------------------------------------------- /doc/批注菜单1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/批注菜单1.png -------------------------------------------------------------------------------- /doc/批注菜单2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/批注菜单2.png -------------------------------------------------------------------------------- /doc/添加搜索按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/添加搜索按钮.png -------------------------------------------------------------------------------- /doc/添加镜像站点.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/添加镜像站点.png -------------------------------------------------------------------------------- /doc/选择文本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/doc/选择文本.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/package.json -------------------------------------------------------------------------------- /patches/react-dom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/patches/react-dom/index.js -------------------------------------------------------------------------------- /patches/react-dom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/patches/react-dom/package.json -------------------------------------------------------------------------------- /patches/react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/patches/react/index.js -------------------------------------------------------------------------------- /patches/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/patches/react/package.json -------------------------------------------------------------------------------- /src/action/action-ExtractAbstractKeywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-ExtractAbstractKeywords.ts -------------------------------------------------------------------------------- /src/action/action-annotation-row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-annotation-row.ts -------------------------------------------------------------------------------- /src/action/action-getCollectionWithChildren.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-getCollectionWithChildren.ts -------------------------------------------------------------------------------- /src/action/action-getText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-getText.ts -------------------------------------------------------------------------------- /src/action/action-highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-highlight.ts -------------------------------------------------------------------------------- /src/action/action-replaceColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-replaceColor.ts -------------------------------------------------------------------------------- /src/action/action-searchWords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-searchWords.ts -------------------------------------------------------------------------------- /src/action/action-searchWords2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-searchWords2.ts -------------------------------------------------------------------------------- /src/action/action-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-tag.ts -------------------------------------------------------------------------------- /src/action/action-tran-annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/action-tran-annotations.ts -------------------------------------------------------------------------------- /src/action/webLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/action/webLibrary.ts -------------------------------------------------------------------------------- /src/addon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/addon.ts -------------------------------------------------------------------------------- /src/component/AnnotationMatrix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/AnnotationMatrix.tsx -------------------------------------------------------------------------------- /src/component/ChangeColor.tsx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/ChangeColor.tsx.txt -------------------------------------------------------------------------------- /src/component/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/Config.ts -------------------------------------------------------------------------------- /src/component/DebounceInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/DebounceInput.tsx -------------------------------------------------------------------------------- /src/component/FixedPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/FixedPopup.tsx -------------------------------------------------------------------------------- /src/component/PickerColor.tsx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/PickerColor.tsx.txt -------------------------------------------------------------------------------- /src/component/PopoverPicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/PopoverPicker.css -------------------------------------------------------------------------------- /src/component/PopoverPicker.tsx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/PopoverPicker.tsx.txt -------------------------------------------------------------------------------- /src/component/PopupRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/PopupRoot.tsx -------------------------------------------------------------------------------- /src/component/common/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/common/icons.tsx -------------------------------------------------------------------------------- /src/component/popDiv.tsx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/popDiv.tsx.txt -------------------------------------------------------------------------------- /src/component/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/styles.css -------------------------------------------------------------------------------- /src/component/tagStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/tagStyle.css -------------------------------------------------------------------------------- /src/component/tagStyle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/tagStyle.d.ts -------------------------------------------------------------------------------- /src/component/useClickOutside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/component/useClickOutside.tsx -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/hooksMenuEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/hooksMenuEvent.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/AnnotationPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/AnnotationPopup.tsx -------------------------------------------------------------------------------- /src/modules/AnnotationsToNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/AnnotationsToNote.tsx -------------------------------------------------------------------------------- /src/modules/BackupAnnotation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/BackupAnnotation.tsx -------------------------------------------------------------------------------- /src/modules/DDD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/DDD.tsx -------------------------------------------------------------------------------- /src/modules/MyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/MyButton.tsx -------------------------------------------------------------------------------- /src/modules/RelationHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/RelationHeader.tsx -------------------------------------------------------------------------------- /src/modules/annotations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/annotations.tsx -------------------------------------------------------------------------------- /src/modules/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/examples.ts -------------------------------------------------------------------------------- /src/modules/getCitationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/getCitationItem.tsx -------------------------------------------------------------------------------- /src/modules/highlightWords.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/highlightWords.tsx -------------------------------------------------------------------------------- /src/modules/highligtWordsRef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/highligtWordsRef.md -------------------------------------------------------------------------------- /src/modules/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/menu.tsx -------------------------------------------------------------------------------- /src/modules/menuTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/menuTools.tsx -------------------------------------------------------------------------------- /src/modules/preferenceScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/preferenceScript.ts -------------------------------------------------------------------------------- /src/modules/preferenceScript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/preferenceScript.txt -------------------------------------------------------------------------------- /src/modules/referenceMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/referenceMark.tsx -------------------------------------------------------------------------------- /src/modules/spaceRemove.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/modules/spaceRemove.tsx -------------------------------------------------------------------------------- /src/utils/FixedTagColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/FixedTagColors.ts -------------------------------------------------------------------------------- /src/utils/Re.js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/Re.js.txt -------------------------------------------------------------------------------- /src/utils/Relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/Relations.ts -------------------------------------------------------------------------------- /src/utils/RelationsTree.js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/RelationsTree.js.txt -------------------------------------------------------------------------------- /src/utils/cite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/cite.ts -------------------------------------------------------------------------------- /src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/color.ts -------------------------------------------------------------------------------- /src/utils/consoleNull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/consoleNull.js -------------------------------------------------------------------------------- /src/utils/groupBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/groupBy.ts -------------------------------------------------------------------------------- /src/utils/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/locale.ts -------------------------------------------------------------------------------- /src/utils/memoize2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/memoize2.ts -------------------------------------------------------------------------------- /src/utils/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/prefs.ts -------------------------------------------------------------------------------- /src/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/sort.ts -------------------------------------------------------------------------------- /src/utils/tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/tab.ts -------------------------------------------------------------------------------- /src/utils/uniqueBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/uniqueBy.ts -------------------------------------------------------------------------------- /src/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/wait.ts -------------------------------------------------------------------------------- /src/utils/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/window.ts -------------------------------------------------------------------------------- /src/utils/ztoolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/ztoolkit.ts -------------------------------------------------------------------------------- /src/utils/zzlb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/src/utils/zzlb.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/typings/global.d.ts -------------------------------------------------------------------------------- /zotero-plugin.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzlb0224/zotero-annotation-manage/HEAD/zotero-plugin.config.ts --------------------------------------------------------------------------------