├── .github └── workflows │ └── main.yml ├── LICENSE ├── README.md ├── README_zh_CN.md ├── assets ├── addDoc.png ├── bk.png ├── card.png ├── compare.png ├── createCard1.gif ├── createWords.gif ├── dailyCardMenu.png ├── dailyCardTree.png ├── digest1.gif ├── digestTrace.png ├── ditestTree.gif ├── moveBlock.png ├── multilineblank.gif ├── multilines.png ├── multilinesCard.png ├── practiceExtract.png ├── reading.png ├── refLeading.png ├── rewrite.png ├── rightClickMenu.png ├── selected.png ├── split.png ├── writingCard.png └── writingCardInit.png ├── icon.png ├── package.json ├── plugin.json ├── preview.png ├── svelte.config.js ├── sy-progressive-plugin ├── LICENSE ├── README.md ├── README_zh_CN.md ├── assets │ ├── addDoc.png │ ├── bk.png │ ├── card.png │ ├── compare.png │ ├── createCard1.gif │ ├── createWords.gif │ ├── dailyCardMenu.png │ ├── dailyCardTree.png │ ├── digest1.gif │ ├── digestTrace.png │ ├── ditestTree.gif │ ├── moveBlock.png │ ├── multilineblank.gif │ ├── multilines.png │ ├── multilinesCard.png │ ├── practiceExtract.png │ ├── reading.png │ ├── refLeading.png │ ├── rewrite.png │ ├── rightClickMenu.png │ ├── selected.png │ ├── split.png │ ├── writingCard.png │ └── writingCardInit.png ├── icon.png ├── package-lock.json ├── package.json ├── plugin.json ├── preview.png ├── src │ ├── AddBook.svelte │ ├── DigestProgressive.svelte │ ├── DigestProgressiveBox.ts │ ├── FlashBox.ts │ ├── FloatingAction.ts │ ├── FloatingButton.svelte │ ├── PieceMovingBox.ts │ ├── PieceSummaryBox.ts │ ├── Progressive.ts │ ├── ProgressiveBtn.ts │ ├── ProgressiveFloatBtns.svelte │ ├── ProgressiveStorage.ts │ ├── ProgressiveTask.ts │ ├── Settings.svelte │ ├── ShowAllBooks.svelte │ ├── Split2Pieces.ts │ ├── SplitSentence.ts │ ├── WritingCompareBox.ts │ ├── constants.ts │ ├── digestUtils.ts │ ├── helper.ts │ ├── i18n │ │ ├── en_US.json │ │ ├── es_ES.json │ │ ├── fr_FR.json │ │ ├── ja_JP.json │ │ ├── zh_CHT.json │ │ └── zh_CN.json │ ├── icons.ts │ ├── index.scss │ ├── index.ts │ ├── types │ │ └── utils.d.ts │ └── wordsUtils.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── sy-tomato-plugin ├── LICENSE ├── README.md ├── README_zh_CN.md ├── assets │ ├── AI_OP.gif │ ├── addPinyin.gif │ ├── baiduAI1.png │ ├── bilink1.gif │ ├── bilink1bottom.gif │ ├── bilink2.gif │ ├── bkAndText2ref.gif │ ├── bookmark.png │ ├── bottomBK.png │ ├── cardSusp.gif │ ├── cardpri1.gif │ ├── changeBG.gif │ ├── cleancards.gif │ ├── cmd.png │ ├── copAsImg.gif │ ├── createCard.gif │ ├── createXmid.gif │ ├── delCard.gif │ ├── fastref.gif │ ├── fixbrokenlnks.gif │ ├── flagBookmark.gif │ ├── gotoBlockID.gif │ ├── iconmenu.png │ ├── idea1.jpg │ ├── idea2.jpg │ ├── ideaconflict.png │ ├── ideadesktop.gif │ ├── knowledgeCfg.png │ ├── knowledgeCreateApp.png │ ├── knowledgeCreateAppID.png │ ├── knowledgeCreateKnowledge.png │ ├── knowledgeCreateKnowledgeID.png │ ├── knowledgeShow.gif │ ├── knowledgeShow2.gif │ ├── knowledgeShow3.png │ ├── knowledgeToken.png │ ├── longCopy.gif │ ├── longMove.gif │ ├── makeItBlur.gif │ ├── makeTab.gif │ ├── menu.png │ ├── mergeDocs.gif │ ├── move2dailynote.gif │ ├── moveDocs.gif │ ├── nextdailynote.png │ ├── openRefByClick.gif │ ├── overlay.gif │ ├── randVedio.gif │ ├── readingpoint.gif │ ├── removeCardsInDoc.gif │ ├── scheduleCopyID.gif │ ├── scheduleSetTime.gif │ ├── scheduleSetTime.png │ ├── settings.gif │ ├── statickLnk.gif │ ├── statustomato.png │ ├── taskrm.gif │ ├── text2ref.gif │ ├── text2refF3.gif │ ├── tidyAssets.gif │ ├── tomatoClockCfg.png │ └── uncorrelated.gif ├── icon.png ├── package-lock.json ├── package.json ├── plugin.json ├── preview.png ├── src │ ├── AIBox.ts │ ├── AIBoxMenu.svelte │ ├── AttrBar.svelte │ ├── BackLinkBottom.svelte │ ├── BackLinkBottomAutoRefresh.svelte │ ├── BackLinkBottomBox.ts │ ├── BackLinkBottomConTree.svelte │ ├── BackLinkBottomOnceRefresh.svelte │ ├── BlockEditor.svelte │ ├── BlockEditor.ts │ ├── BuyTomato.svelte │ ├── CardBox.ts │ ├── CardBoxFloat.svelte │ ├── CardPriorityBar.svelte │ ├── CardPriorityBox.ts │ ├── CommentBox.svelte │ ├── CommentBox.ts │ ├── CommentInput.svelte │ ├── CozeSearchBox.ts │ ├── CozeSearchBoxMenu.svelte │ ├── CpBox.ts │ ├── DailyNoteBox.ts │ ├── DbBkBox.ts │ ├── FastNoteBox.ts │ ├── FloatingBall.ts │ ├── FloatingBallDocBtn.svelte │ ├── FloatingBallKeyboardBtn.svelte │ ├── FloatingBallProtyleDialog.svelte │ ├── GraphBox.svelte │ ├── GraphBox.ts │ ├── GraphControl.svelte │ ├── GraphMenu.svelte │ ├── ImgBox.ts │ ├── ImgOverlayBox.svelte │ ├── ImgOverlayBox.ts │ ├── IndexConf.svelte │ ├── LinkBox.svelte │ ├── LinkBox.ts │ ├── LinkBoxBar.svelte │ ├── ListBox.ts │ ├── MarkdownExportBox.ts │ ├── MindWire.ts │ ├── MixBox.ts │ ├── NavigatorBox.svelte │ ├── NoteBox.svelte │ ├── NoteBox.ts │ ├── NotebookSelect.svelte │ ├── PrefixArticleParts.svelte │ ├── PrefixArticles.svelte │ ├── PrefixArticles.ts │ ├── ReadingPoint.svelte │ ├── ReadingPointBox.ts │ ├── Schedule.ts │ ├── SuperRefBox.ts │ ├── Tag2RefBox.ts │ ├── TomatoClock.ts │ ├── TomatoClockVedio.svelte │ ├── TomatoVIP.svelte │ ├── ToolbarBox.ts │ ├── constants.ts │ ├── cssStyle.ts │ ├── exportFiles.ts │ ├── fold.ts │ ├── i18n │ │ ├── empty.drawio │ │ ├── empty.xmind │ │ ├── en_US.json │ │ ├── es_ES.json │ │ ├── fr_FR.json │ │ ├── ja_JP.json │ │ ├── zh_CHT.json │ │ └── zh_CN.json │ ├── icons.ts │ ├── index.scss │ ├── index.ts │ ├── libs │ │ ├── BaseTomatoPlugin.ts │ │ ├── ClickHelper.ts │ │ ├── DialogSvelte.svelte │ │ ├── DialogText.ts │ │ ├── DialogTextSv.svelte │ │ ├── EnumUtils.ts │ │ ├── Events.ts │ │ ├── FloatingBallHelper.ts │ │ ├── ProtyleSv4Dialog.svelte │ │ ├── SelectionML.ts │ │ ├── bkUtils.ts │ │ ├── bookmark.ts │ │ ├── cache.ts │ │ ├── cardUtils.ts │ │ ├── cozeAI.ts │ │ ├── destroyer.ts │ │ ├── docUtils.ts │ │ ├── focusUtils.ts │ │ ├── functional.ts │ │ ├── gconst.ts │ │ ├── hash.ts │ │ ├── ial.ts │ │ ├── keyboard.ts │ │ ├── linkUtils.ts │ │ ├── listUtils.ts │ │ ├── openAI.ts │ │ ├── progressive.ts │ │ ├── search.ts │ │ ├── stores.ts │ │ ├── switchDraft.ts │ │ ├── sydom.ts │ │ ├── taobaocode.ts │ │ ├── text1.ts │ │ ├── text10.ts │ │ ├── text11.ts │ │ ├── text12.ts │ │ ├── text13.ts │ │ ├── text14.ts │ │ ├── text2.ts │ │ ├── text3.ts │ │ ├── text4.ts │ │ ├── text5.ts │ │ ├── text6.ts │ │ ├── text7.ts │ │ ├── text8.ts │ │ ├── text9.ts │ │ ├── timer.ts │ │ ├── tools.ts │ │ ├── types.ts │ │ ├── ui.ts │ │ ├── user.ts │ │ ├── utils.ts │ │ └── winHotkey.ts │ ├── reminder-utils.ts │ ├── tomatoI18n.ts │ └── types │ │ ├── baidu.d.ts │ │ ├── siyuan.d.ts │ │ └── utils.d.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /assets/addDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/addDoc.png -------------------------------------------------------------------------------- /assets/bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/bk.png -------------------------------------------------------------------------------- /assets/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/card.png -------------------------------------------------------------------------------- /assets/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/compare.png -------------------------------------------------------------------------------- /assets/createCard1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/createCard1.gif -------------------------------------------------------------------------------- /assets/createWords.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/createWords.gif -------------------------------------------------------------------------------- /assets/dailyCardMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/dailyCardMenu.png -------------------------------------------------------------------------------- /assets/dailyCardTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/dailyCardTree.png -------------------------------------------------------------------------------- /assets/digest1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/digest1.gif -------------------------------------------------------------------------------- /assets/digestTrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/digestTrace.png -------------------------------------------------------------------------------- /assets/ditestTree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/ditestTree.gif -------------------------------------------------------------------------------- /assets/moveBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/moveBlock.png -------------------------------------------------------------------------------- /assets/multilineblank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/multilineblank.gif -------------------------------------------------------------------------------- /assets/multilines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/multilines.png -------------------------------------------------------------------------------- /assets/multilinesCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/multilinesCard.png -------------------------------------------------------------------------------- /assets/practiceExtract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/practiceExtract.png -------------------------------------------------------------------------------- /assets/reading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/reading.png -------------------------------------------------------------------------------- /assets/refLeading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/refLeading.png -------------------------------------------------------------------------------- /assets/rewrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/rewrite.png -------------------------------------------------------------------------------- /assets/rightClickMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/rightClickMenu.png -------------------------------------------------------------------------------- /assets/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/selected.png -------------------------------------------------------------------------------- /assets/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/split.png -------------------------------------------------------------------------------- /assets/writingCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/writingCard.png -------------------------------------------------------------------------------- /assets/writingCardInit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/assets/writingCardInit.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/plugin.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/preview.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/svelte.config.js -------------------------------------------------------------------------------- /sy-progressive-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/LICENSE -------------------------------------------------------------------------------- /sy-progressive-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/README.md -------------------------------------------------------------------------------- /sy-progressive-plugin/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/README_zh_CN.md -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/addDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/addDoc.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/bk.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/card.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/compare.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/createCard1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/createCard1.gif -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/createWords.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/createWords.gif -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/dailyCardMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/dailyCardMenu.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/dailyCardTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/dailyCardTree.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/digest1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/digest1.gif -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/digestTrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/digestTrace.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/ditestTree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/ditestTree.gif -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/moveBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/moveBlock.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/multilineblank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/multilineblank.gif -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/multilines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/multilines.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/multilinesCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/multilinesCard.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/practiceExtract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/practiceExtract.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/reading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/reading.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/refLeading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/refLeading.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/rewrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/rewrite.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/rightClickMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/rightClickMenu.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/selected.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/split.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/writingCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/writingCard.png -------------------------------------------------------------------------------- /sy-progressive-plugin/assets/writingCardInit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/assets/writingCardInit.png -------------------------------------------------------------------------------- /sy-progressive-plugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/icon.png -------------------------------------------------------------------------------- /sy-progressive-plugin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/package-lock.json -------------------------------------------------------------------------------- /sy-progressive-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/package.json -------------------------------------------------------------------------------- /sy-progressive-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/plugin.json -------------------------------------------------------------------------------- /sy-progressive-plugin/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/preview.png -------------------------------------------------------------------------------- /sy-progressive-plugin/src/AddBook.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/AddBook.svelte -------------------------------------------------------------------------------- /sy-progressive-plugin/src/DigestProgressive.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/DigestProgressive.svelte -------------------------------------------------------------------------------- /sy-progressive-plugin/src/DigestProgressiveBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/DigestProgressiveBox.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/FlashBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/FlashBox.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/FloatingAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/FloatingAction.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/FloatingButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/FloatingButton.svelte -------------------------------------------------------------------------------- /sy-progressive-plugin/src/PieceMovingBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/PieceMovingBox.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/PieceSummaryBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/PieceSummaryBox.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/Progressive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/Progressive.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/ProgressiveBtn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/ProgressiveBtn.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/ProgressiveFloatBtns.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/ProgressiveFloatBtns.svelte -------------------------------------------------------------------------------- /sy-progressive-plugin/src/ProgressiveStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/ProgressiveStorage.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/ProgressiveTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/ProgressiveTask.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/Settings.svelte -------------------------------------------------------------------------------- /sy-progressive-plugin/src/ShowAllBooks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/ShowAllBooks.svelte -------------------------------------------------------------------------------- /sy-progressive-plugin/src/Split2Pieces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/Split2Pieces.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/SplitSentence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/SplitSentence.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/WritingCompareBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/WritingCompareBox.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/constants.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/digestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/digestUtils.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/helper.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/i18n/en_US.json -------------------------------------------------------------------------------- /sy-progressive-plugin/src/i18n/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/i18n/es_ES.json -------------------------------------------------------------------------------- /sy-progressive-plugin/src/i18n/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/i18n/fr_FR.json -------------------------------------------------------------------------------- /sy-progressive-plugin/src/i18n/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/i18n/ja_JP.json -------------------------------------------------------------------------------- /sy-progressive-plugin/src/i18n/zh_CHT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/i18n/zh_CHT.json -------------------------------------------------------------------------------- /sy-progressive-plugin/src/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/i18n/zh_CN.json -------------------------------------------------------------------------------- /sy-progressive-plugin/src/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/icons.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/index.scss -------------------------------------------------------------------------------- /sy-progressive-plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/index.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/types/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/types/utils.d.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/src/wordsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/src/wordsUtils.ts -------------------------------------------------------------------------------- /sy-progressive-plugin/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/svelte.config.js -------------------------------------------------------------------------------- /sy-progressive-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/tsconfig.json -------------------------------------------------------------------------------- /sy-progressive-plugin/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/tsconfig.node.json -------------------------------------------------------------------------------- /sy-progressive-plugin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-progressive-plugin/vite.config.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/LICENSE -------------------------------------------------------------------------------- /sy-tomato-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/README.md -------------------------------------------------------------------------------- /sy-tomato-plugin/README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/README_zh_CN.md -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/AI_OP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/AI_OP.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/addPinyin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/addPinyin.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/baiduAI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/baiduAI1.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/bilink1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/bilink1.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/bilink1bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/bilink1bottom.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/bilink2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/bilink2.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/bkAndText2ref.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/bkAndText2ref.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/bookmark.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/bottomBK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/bottomBK.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/cardSusp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/cardSusp.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/cardpri1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/cardpri1.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/changeBG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/changeBG.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/cleancards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/cleancards.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/cmd.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/copAsImg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/copAsImg.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/createCard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/createCard.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/createXmid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/createXmid.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/delCard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/delCard.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/fastref.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/fastref.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/fixbrokenlnks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/fixbrokenlnks.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/flagBookmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/flagBookmark.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/gotoBlockID.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/gotoBlockID.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/iconmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/iconmenu.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/idea1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/idea1.jpg -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/idea2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/idea2.jpg -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/ideaconflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/ideaconflict.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/ideadesktop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/ideadesktop.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeCfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeCfg.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeCreateApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeCreateApp.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeCreateAppID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeCreateAppID.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeCreateKnowledge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeCreateKnowledge.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeCreateKnowledgeID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeCreateKnowledgeID.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeShow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeShow.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeShow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeShow2.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeShow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeShow3.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/knowledgeToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/knowledgeToken.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/longCopy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/longCopy.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/longMove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/longMove.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/makeItBlur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/makeItBlur.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/makeTab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/makeTab.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/menu.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/mergeDocs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/mergeDocs.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/move2dailynote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/move2dailynote.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/moveDocs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/moveDocs.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/nextdailynote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/nextdailynote.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/openRefByClick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/openRefByClick.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/overlay.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/randVedio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/randVedio.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/readingpoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/readingpoint.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/removeCardsInDoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/removeCardsInDoc.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/scheduleCopyID.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/scheduleCopyID.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/scheduleSetTime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/scheduleSetTime.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/scheduleSetTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/scheduleSetTime.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/settings.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/statickLnk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/statickLnk.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/statustomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/statustomato.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/taskrm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/taskrm.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/text2ref.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/text2ref.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/text2refF3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/text2refF3.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/tidyAssets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/tidyAssets.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/tomatoClockCfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/tomatoClockCfg.png -------------------------------------------------------------------------------- /sy-tomato-plugin/assets/uncorrelated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/assets/uncorrelated.gif -------------------------------------------------------------------------------- /sy-tomato-plugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/icon.png -------------------------------------------------------------------------------- /sy-tomato-plugin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/package-lock.json -------------------------------------------------------------------------------- /sy-tomato-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/package.json -------------------------------------------------------------------------------- /sy-tomato-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/plugin.json -------------------------------------------------------------------------------- /sy-tomato-plugin/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/preview.png -------------------------------------------------------------------------------- /sy-tomato-plugin/src/AIBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/AIBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/AIBoxMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/AIBoxMenu.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/AttrBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/AttrBar.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/BackLinkBottom.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/BackLinkBottom.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/BackLinkBottomAutoRefresh.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/BackLinkBottomAutoRefresh.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/BackLinkBottomBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/BackLinkBottomBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/BackLinkBottomConTree.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/BackLinkBottomConTree.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/BackLinkBottomOnceRefresh.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/BackLinkBottomOnceRefresh.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/BlockEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/BlockEditor.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/BlockEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/BlockEditor.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/BuyTomato.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/BuyTomato.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CardBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CardBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CardBoxFloat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CardBoxFloat.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CardPriorityBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CardPriorityBar.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CardPriorityBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CardPriorityBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CommentBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CommentBox.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CommentBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CommentBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CommentInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CommentInput.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CozeSearchBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CozeSearchBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CozeSearchBoxMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CozeSearchBoxMenu.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/CpBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/CpBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/DailyNoteBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/DailyNoteBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/DbBkBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/DbBkBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/FastNoteBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/FastNoteBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/FloatingBall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/FloatingBall.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/FloatingBallDocBtn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/FloatingBallDocBtn.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/FloatingBallKeyboardBtn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/FloatingBallKeyboardBtn.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/FloatingBallProtyleDialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/FloatingBallProtyleDialog.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/GraphBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/GraphBox.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/GraphBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/GraphBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/GraphControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/GraphControl.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/GraphMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/GraphMenu.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/ImgBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/ImgBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/ImgOverlayBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/ImgOverlayBox.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/ImgOverlayBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/ImgOverlayBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/IndexConf.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/IndexConf.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/LinkBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/LinkBox.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/LinkBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/LinkBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/LinkBoxBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/LinkBoxBar.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/ListBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/ListBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/MarkdownExportBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/MarkdownExportBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/MindWire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/MindWire.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/MixBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/MixBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/NavigatorBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/NavigatorBox.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/NoteBox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/NoteBox.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/NoteBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/NoteBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/NotebookSelect.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/NotebookSelect.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/PrefixArticleParts.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/PrefixArticleParts.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/PrefixArticles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/PrefixArticles.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/PrefixArticles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/PrefixArticles.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/ReadingPoint.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/ReadingPoint.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/ReadingPointBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/ReadingPointBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/Schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/Schedule.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/SuperRefBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/SuperRefBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/Tag2RefBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/Tag2RefBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/TomatoClock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/TomatoClock.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/TomatoClockVedio.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/TomatoClockVedio.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/TomatoVIP.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/TomatoVIP.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/ToolbarBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/ToolbarBox.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/constants.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/cssStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/cssStyle.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/exportFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/exportFiles.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/fold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/fold.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/i18n/empty.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/i18n/empty.drawio -------------------------------------------------------------------------------- /sy-tomato-plugin/src/i18n/empty.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/i18n/empty.xmind -------------------------------------------------------------------------------- /sy-tomato-plugin/src/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/i18n/en_US.json -------------------------------------------------------------------------------- /sy-tomato-plugin/src/i18n/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/i18n/es_ES.json -------------------------------------------------------------------------------- /sy-tomato-plugin/src/i18n/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/i18n/fr_FR.json -------------------------------------------------------------------------------- /sy-tomato-plugin/src/i18n/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/i18n/ja_JP.json -------------------------------------------------------------------------------- /sy-tomato-plugin/src/i18n/zh_CHT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/i18n/zh_CHT.json -------------------------------------------------------------------------------- /sy-tomato-plugin/src/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/i18n/zh_CN.json -------------------------------------------------------------------------------- /sy-tomato-plugin/src/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/icons.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/index.scss -------------------------------------------------------------------------------- /sy-tomato-plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/index.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/BaseTomatoPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/BaseTomatoPlugin.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/ClickHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/ClickHelper.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/DialogSvelte.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/DialogSvelte.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/DialogText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/DialogText.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/DialogTextSv.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/DialogTextSv.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/EnumUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/EnumUtils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/Events.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/FloatingBallHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/FloatingBallHelper.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/ProtyleSv4Dialog.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/ProtyleSv4Dialog.svelte -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/SelectionML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/SelectionML.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/bkUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/bkUtils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/bookmark.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/cache.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/cardUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/cardUtils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/cozeAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/cozeAI.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/destroyer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/destroyer.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/docUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/docUtils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/focusUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/focusUtils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/functional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/functional.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/gconst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/gconst.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/hash.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/ial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/ial.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/keyboard.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/linkUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/linkUtils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/listUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/listUtils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/openAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/openAI.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/progressive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/progressive.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/search.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/stores.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/switchDraft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/switchDraft.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/sydom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/sydom.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/taobaocode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/taobaocode.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text1.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text10.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text10.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text11.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text11.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text12.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text12.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text13.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text13.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text14.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text14.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text2.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text3.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text4.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text5.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text6.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text7.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text8.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/text9.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/text9.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/timer.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/tools.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/types.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/ui.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/user.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/utils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/libs/winHotkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/libs/winHotkey.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/reminder-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/reminder-utils.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/tomatoI18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/tomatoI18n.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/types/baidu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/types/baidu.d.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/types/siyuan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/types/siyuan.d.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/src/types/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/src/types/utils.d.ts -------------------------------------------------------------------------------- /sy-tomato-plugin/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/svelte.config.js -------------------------------------------------------------------------------- /sy-tomato-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/tsconfig.json -------------------------------------------------------------------------------- /sy-tomato-plugin/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/tsconfig.node.json -------------------------------------------------------------------------------- /sy-tomato-plugin/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/sy-tomato-plugin/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAliceBobI/sy-progressive-plugin/HEAD/vite.config.ts --------------------------------------------------------------------------------