├── .github ├── ISSUE_TEMPLATE │ ├── ----.md │ └── ---bug.md └── workflows │ └── deploy.yml ├── .gitignore ├── .nvmrc ├── .vscode └── settings.json ├── Feat.md ├── LICENSE ├── README.md ├── TODO.md ├── package.json ├── public ├── extension-icons │ ├── .DS_Store │ ├── icon128.png │ ├── icon16.png │ ├── icon24.png │ ├── icon32.png │ └── icon48.png └── manifest.json ├── res ├── README │ ├── icon128.png │ ├── install.gif │ ├── mark.png │ └── options.png └── webstore │ ├── copy.png │ ├── demo1.png │ ├── demo2.png │ ├── demo3.png │ ├── demo4.png │ ├── icon128.png │ ├── mp.png │ ├── options.png │ ├── popup.png │ ├── shelf.png │ └── theme.png ├── scripts ├── pack-crx.js ├── pack-crx.py ├── pack-zip.py ├── requirements.txt ├── submit-edge.mjs └── zip.js ├── src ├── background.ts ├── background │ ├── bg.html │ ├── modules │ │ ├── bg-dev.ts │ │ ├── bg-init.ts │ │ ├── bg-popup-api.ts │ │ ├── bg-popup-process.ts │ │ ├── bg-popup.ts │ │ ├── bg-register.ts │ │ ├── bg-rightClick.ts │ │ ├── bg-statistcs-api.ts │ │ ├── bg-utils.ts │ │ ├── bg-vars.ts │ │ └── bg-wereader-api.ts │ └── types │ │ ├── Archive.ts │ │ ├── Author.ts │ │ ├── BestMarksJson.ts │ │ ├── Book.ts │ │ ├── BookProgress.ts │ │ ├── ChapInfoJson.ts │ │ ├── Chapter.ts │ │ ├── CommentReview.ts │ │ ├── CommentsJson.ts │ │ ├── MarksJson.ts │ │ ├── Mp.ts │ │ ├── ShelfJson.ts │ │ ├── ThoughtComment.ts │ │ ├── ThoughtJson.ts │ │ ├── ThoughtReplyUser.ts │ │ ├── ThoughtReview.ts │ │ ├── Updated.ts │ │ └── User.ts ├── content.ts ├── content │ ├── modules │ │ ├── content-alert.ts │ │ ├── content-deleteBookmarks.ts │ │ ├── content-domObserver.ts │ │ ├── content-getChapters.ts │ │ ├── content-key-ctrl.ts │ │ ├── content-key-esc.ts │ │ ├── content-keyBind.ts │ │ ├── content-markedData.ts │ │ ├── content-mask.ts │ │ ├── content-mousemove.ts │ │ ├── content-notesMenu.ts │ │ ├── content-rightClick.ts │ │ ├── content-scroll-bar.ts │ │ ├── content-searchNote.ts │ │ ├── content-select-action.ts │ │ ├── content-theme.ts │ │ ├── content-thought-edit.ts │ │ ├── content-utils.ts │ │ └── fancybox.ts │ ├── static │ │ └── css │ │ │ ├── content-hideScroll.css │ │ │ ├── fancybox.css │ │ │ ├── notes-menu.css │ │ │ ├── rankChapter.css │ │ │ ├── showScroll.css │ │ │ └── theme │ │ │ ├── dark.css │ │ │ ├── green.css │ │ │ ├── orange.css │ │ │ └── white.css │ └── types │ │ ├── Code.ts │ │ ├── Footnote.ts │ │ └── Img.ts ├── mpwx │ ├── mp-utils.ts │ ├── mp.css │ ├── mp.html │ └── mp.ts ├── options.ts ├── options │ ├── icons │ │ ├── button_delete.png │ │ ├── button_edit.png │ │ ├── button_new.png │ │ ├── chapterLevel.png │ │ ├── mark.png │ │ ├── markstyle1.png │ │ ├── markstyle2.png │ │ └── markstyle3.png │ ├── options-config-edit.ts │ ├── options-config-init.ts │ ├── options-expand.ts │ ├── options-help.ts │ ├── options-main.ts │ ├── options-prompt.ts │ ├── options-regexp.ts │ ├── options-unload.ts │ ├── options-utils.ts │ ├── options-var.ts │ ├── options.css │ └── options.html ├── popup.ts ├── popup │ ├── modules │ │ ├── popup-develop.ts │ │ ├── popup-note.ts │ │ ├── popup-options.ts │ │ ├── popup-shelf-reload.ts │ │ ├── popup-shelf-search.ts │ │ ├── popup-shelf.ts │ │ ├── popup-statistic.ts │ │ ├── popup-tabs.ts │ │ └── popup-utils.ts │ ├── page │ │ ├── popup-dropdown-btn.tsx │ │ ├── popup-dropdown-caller.tsx │ │ ├── popup-dropdown-container.tsx │ │ ├── popup-page.tsx │ │ ├── popup-tab-btn-container.tsx │ │ ├── popup-tab-btn.tsx │ │ ├── popup-tab-content-note.tsx │ │ └── popup-tab-content.tsx │ ├── popup.html │ └── static │ │ └── css │ │ └── popup.css ├── statistics │ ├── statistics-month.ts │ ├── statistics-var.ts │ ├── statistics-week.ts │ ├── statistics.css │ ├── statistics.html │ └── statistics.ts └── types │ ├── mpTypes.ts │ ├── readDetailTypes.ts │ └── shelfTypes.ts ├── tsconfig.json ├── webpack ├── webpack.config.base.js ├── webpack.config.dev.js └── webpack.config.production.js ├── wereader-firefox ├── background │ ├── background.html │ └── background.js ├── content │ ├── clipboard.js │ ├── content-copy.js │ ├── content-notification.js │ ├── content-pre.js │ ├── content-shelf.js │ ├── sweetalert2.min.css │ └── sweetalert2.min.js ├── icons │ ├── icon128.png │ ├── icon16.png │ ├── icon24.png │ ├── icon32.png │ └── icon48.png ├── inject │ ├── inject-bid.js │ ├── inject-copyBtn.js │ ├── inject-copyImgs.js │ └── inject-getContents.js ├── manifest.json ├── options │ ├── help.html │ ├── icons │ │ ├── add.gif │ │ ├── mark.png │ │ └── remove.gif │ ├── options.html │ └── options.js └── popup │ ├── popup.html │ └── popup.js └── wereader.zip /.github/ISSUE_TEMPLATE/----.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/.github/ISSUE_TEMPLATE/----.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/.github/ISSUE_TEMPLATE/---bug.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test*.* 2 | node_modules/ 3 | dist/ 4 | *.pem -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/.nvmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Feat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/Feat.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/TODO.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/package.json -------------------------------------------------------------------------------- /public/extension-icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/public/extension-icons/.DS_Store -------------------------------------------------------------------------------- /public/extension-icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/public/extension-icons/icon128.png -------------------------------------------------------------------------------- /public/extension-icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/public/extension-icons/icon16.png -------------------------------------------------------------------------------- /public/extension-icons/icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/public/extension-icons/icon24.png -------------------------------------------------------------------------------- /public/extension-icons/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/public/extension-icons/icon32.png -------------------------------------------------------------------------------- /public/extension-icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/public/extension-icons/icon48.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/public/manifest.json -------------------------------------------------------------------------------- /res/README/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/README/icon128.png -------------------------------------------------------------------------------- /res/README/install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/README/install.gif -------------------------------------------------------------------------------- /res/README/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/README/mark.png -------------------------------------------------------------------------------- /res/README/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/README/options.png -------------------------------------------------------------------------------- /res/webstore/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/copy.png -------------------------------------------------------------------------------- /res/webstore/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/demo1.png -------------------------------------------------------------------------------- /res/webstore/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/demo2.png -------------------------------------------------------------------------------- /res/webstore/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/demo3.png -------------------------------------------------------------------------------- /res/webstore/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/demo4.png -------------------------------------------------------------------------------- /res/webstore/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/icon128.png -------------------------------------------------------------------------------- /res/webstore/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/mp.png -------------------------------------------------------------------------------- /res/webstore/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/options.png -------------------------------------------------------------------------------- /res/webstore/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/popup.png -------------------------------------------------------------------------------- /res/webstore/shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/shelf.png -------------------------------------------------------------------------------- /res/webstore/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/res/webstore/theme.png -------------------------------------------------------------------------------- /scripts/pack-crx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/scripts/pack-crx.js -------------------------------------------------------------------------------- /scripts/pack-crx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/scripts/pack-crx.py -------------------------------------------------------------------------------- /scripts/pack-zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/scripts/pack-zip.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | gitignore_parser==0.0.8 -------------------------------------------------------------------------------- /scripts/submit-edge.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/scripts/submit-edge.mjs -------------------------------------------------------------------------------- /scripts/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/scripts/zip.js -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/background/bg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/bg.html -------------------------------------------------------------------------------- /src/background/modules/bg-dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-dev.ts -------------------------------------------------------------------------------- /src/background/modules/bg-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-init.ts -------------------------------------------------------------------------------- /src/background/modules/bg-popup-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-popup-api.ts -------------------------------------------------------------------------------- /src/background/modules/bg-popup-process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-popup-process.ts -------------------------------------------------------------------------------- /src/background/modules/bg-popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-popup.ts -------------------------------------------------------------------------------- /src/background/modules/bg-register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-register.ts -------------------------------------------------------------------------------- /src/background/modules/bg-rightClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-rightClick.ts -------------------------------------------------------------------------------- /src/background/modules/bg-statistcs-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-statistcs-api.ts -------------------------------------------------------------------------------- /src/background/modules/bg-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-utils.ts -------------------------------------------------------------------------------- /src/background/modules/bg-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-vars.ts -------------------------------------------------------------------------------- /src/background/modules/bg-wereader-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/modules/bg-wereader-api.ts -------------------------------------------------------------------------------- /src/background/types/Archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/Archive.ts -------------------------------------------------------------------------------- /src/background/types/Author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/Author.ts -------------------------------------------------------------------------------- /src/background/types/BestMarksJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/BestMarksJson.ts -------------------------------------------------------------------------------- /src/background/types/Book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/Book.ts -------------------------------------------------------------------------------- /src/background/types/BookProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/BookProgress.ts -------------------------------------------------------------------------------- /src/background/types/ChapInfoJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/ChapInfoJson.ts -------------------------------------------------------------------------------- /src/background/types/Chapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/Chapter.ts -------------------------------------------------------------------------------- /src/background/types/CommentReview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/CommentReview.ts -------------------------------------------------------------------------------- /src/background/types/CommentsJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/CommentsJson.ts -------------------------------------------------------------------------------- /src/background/types/MarksJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/MarksJson.ts -------------------------------------------------------------------------------- /src/background/types/Mp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/Mp.ts -------------------------------------------------------------------------------- /src/background/types/ShelfJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/ShelfJson.ts -------------------------------------------------------------------------------- /src/background/types/ThoughtComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/ThoughtComment.ts -------------------------------------------------------------------------------- /src/background/types/ThoughtJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/ThoughtJson.ts -------------------------------------------------------------------------------- /src/background/types/ThoughtReplyUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/ThoughtReplyUser.ts -------------------------------------------------------------------------------- /src/background/types/ThoughtReview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/ThoughtReview.ts -------------------------------------------------------------------------------- /src/background/types/Updated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/Updated.ts -------------------------------------------------------------------------------- /src/background/types/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/background/types/User.ts -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content.ts -------------------------------------------------------------------------------- /src/content/modules/content-alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-alert.ts -------------------------------------------------------------------------------- /src/content/modules/content-deleteBookmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-deleteBookmarks.ts -------------------------------------------------------------------------------- /src/content/modules/content-domObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-domObserver.ts -------------------------------------------------------------------------------- /src/content/modules/content-getChapters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-getChapters.ts -------------------------------------------------------------------------------- /src/content/modules/content-key-ctrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-key-ctrl.ts -------------------------------------------------------------------------------- /src/content/modules/content-key-esc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-key-esc.ts -------------------------------------------------------------------------------- /src/content/modules/content-keyBind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-keyBind.ts -------------------------------------------------------------------------------- /src/content/modules/content-markedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-markedData.ts -------------------------------------------------------------------------------- /src/content/modules/content-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-mask.ts -------------------------------------------------------------------------------- /src/content/modules/content-mousemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-mousemove.ts -------------------------------------------------------------------------------- /src/content/modules/content-notesMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-notesMenu.ts -------------------------------------------------------------------------------- /src/content/modules/content-rightClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-rightClick.ts -------------------------------------------------------------------------------- /src/content/modules/content-scroll-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-scroll-bar.ts -------------------------------------------------------------------------------- /src/content/modules/content-searchNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-searchNote.ts -------------------------------------------------------------------------------- /src/content/modules/content-select-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-select-action.ts -------------------------------------------------------------------------------- /src/content/modules/content-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-theme.ts -------------------------------------------------------------------------------- /src/content/modules/content-thought-edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-thought-edit.ts -------------------------------------------------------------------------------- /src/content/modules/content-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/content-utils.ts -------------------------------------------------------------------------------- /src/content/modules/fancybox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/modules/fancybox.ts -------------------------------------------------------------------------------- /src/content/static/css/content-hideScroll.css: -------------------------------------------------------------------------------- 1 | body::-webkit-scrollbar { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /src/content/static/css/fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/static/css/fancybox.css -------------------------------------------------------------------------------- /src/content/static/css/notes-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/static/css/notes-menu.css -------------------------------------------------------------------------------- /src/content/static/css/rankChapter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/static/css/rankChapter.css -------------------------------------------------------------------------------- /src/content/static/css/showScroll.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/static/css/showScroll.css -------------------------------------------------------------------------------- /src/content/static/css/theme/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/static/css/theme/dark.css -------------------------------------------------------------------------------- /src/content/static/css/theme/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/static/css/theme/green.css -------------------------------------------------------------------------------- /src/content/static/css/theme/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/static/css/theme/orange.css -------------------------------------------------------------------------------- /src/content/static/css/theme/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/static/css/theme/white.css -------------------------------------------------------------------------------- /src/content/types/Code.ts: -------------------------------------------------------------------------------- 1 | export interface Code { 2 | code: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/content/types/Footnote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/types/Footnote.ts -------------------------------------------------------------------------------- /src/content/types/Img.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/content/types/Img.ts -------------------------------------------------------------------------------- /src/mpwx/mp-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/mpwx/mp-utils.ts -------------------------------------------------------------------------------- /src/mpwx/mp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/mpwx/mp.css -------------------------------------------------------------------------------- /src/mpwx/mp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/mpwx/mp.html -------------------------------------------------------------------------------- /src/mpwx/mp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/mpwx/mp.ts -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/options/icons/button_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/icons/button_delete.png -------------------------------------------------------------------------------- /src/options/icons/button_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/icons/button_edit.png -------------------------------------------------------------------------------- /src/options/icons/button_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/icons/button_new.png -------------------------------------------------------------------------------- /src/options/icons/chapterLevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/icons/chapterLevel.png -------------------------------------------------------------------------------- /src/options/icons/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/icons/mark.png -------------------------------------------------------------------------------- /src/options/icons/markstyle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/icons/markstyle1.png -------------------------------------------------------------------------------- /src/options/icons/markstyle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/icons/markstyle2.png -------------------------------------------------------------------------------- /src/options/icons/markstyle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/icons/markstyle3.png -------------------------------------------------------------------------------- /src/options/options-config-edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-config-edit.ts -------------------------------------------------------------------------------- /src/options/options-config-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-config-init.ts -------------------------------------------------------------------------------- /src/options/options-expand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-expand.ts -------------------------------------------------------------------------------- /src/options/options-help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-help.ts -------------------------------------------------------------------------------- /src/options/options-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-main.ts -------------------------------------------------------------------------------- /src/options/options-prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-prompt.ts -------------------------------------------------------------------------------- /src/options/options-regexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-regexp.ts -------------------------------------------------------------------------------- /src/options/options-unload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-unload.ts -------------------------------------------------------------------------------- /src/options/options-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-utils.ts -------------------------------------------------------------------------------- /src/options/options-var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options-var.ts -------------------------------------------------------------------------------- /src/options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options.css -------------------------------------------------------------------------------- /src/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/options/options.html -------------------------------------------------------------------------------- /src/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-develop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-develop.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-note.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-options.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-shelf-reload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-shelf-reload.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-shelf-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-shelf-search.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-shelf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-shelf.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-statistic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-statistic.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-tabs.ts -------------------------------------------------------------------------------- /src/popup/modules/popup-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/modules/popup-utils.ts -------------------------------------------------------------------------------- /src/popup/page/popup-dropdown-btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/page/popup-dropdown-btn.tsx -------------------------------------------------------------------------------- /src/popup/page/popup-dropdown-caller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/page/popup-dropdown-caller.tsx -------------------------------------------------------------------------------- /src/popup/page/popup-dropdown-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/page/popup-dropdown-container.tsx -------------------------------------------------------------------------------- /src/popup/page/popup-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/page/popup-page.tsx -------------------------------------------------------------------------------- /src/popup/page/popup-tab-btn-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/page/popup-tab-btn-container.tsx -------------------------------------------------------------------------------- /src/popup/page/popup-tab-btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/page/popup-tab-btn.tsx -------------------------------------------------------------------------------- /src/popup/page/popup-tab-content-note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/page/popup-tab-content-note.tsx -------------------------------------------------------------------------------- /src/popup/page/popup-tab-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/page/popup-tab-content.tsx -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/static/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/popup/static/css/popup.css -------------------------------------------------------------------------------- /src/statistics/statistics-month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/statistics/statistics-month.ts -------------------------------------------------------------------------------- /src/statistics/statistics-var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/statistics/statistics-var.ts -------------------------------------------------------------------------------- /src/statistics/statistics-week.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/statistics/statistics-week.ts -------------------------------------------------------------------------------- /src/statistics/statistics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/statistics/statistics.css -------------------------------------------------------------------------------- /src/statistics/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/statistics/statistics.html -------------------------------------------------------------------------------- /src/statistics/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/statistics/statistics.ts -------------------------------------------------------------------------------- /src/types/mpTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/types/mpTypes.ts -------------------------------------------------------------------------------- /src/types/readDetailTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/types/readDetailTypes.ts -------------------------------------------------------------------------------- /src/types/shelfTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/src/types/shelfTypes.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack/webpack.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/webpack/webpack.config.base.js -------------------------------------------------------------------------------- /webpack/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/webpack/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack/webpack.config.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/webpack/webpack.config.production.js -------------------------------------------------------------------------------- /wereader-firefox/background/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/background/background.html -------------------------------------------------------------------------------- /wereader-firefox/background/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/background/background.js -------------------------------------------------------------------------------- /wereader-firefox/content/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/content/clipboard.js -------------------------------------------------------------------------------- /wereader-firefox/content/content-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/content/content-copy.js -------------------------------------------------------------------------------- /wereader-firefox/content/content-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/content/content-notification.js -------------------------------------------------------------------------------- /wereader-firefox/content/content-pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/content/content-pre.js -------------------------------------------------------------------------------- /wereader-firefox/content/content-shelf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/content/content-shelf.js -------------------------------------------------------------------------------- /wereader-firefox/content/sweetalert2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/content/sweetalert2.min.css -------------------------------------------------------------------------------- /wereader-firefox/content/sweetalert2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/content/sweetalert2.min.js -------------------------------------------------------------------------------- /wereader-firefox/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/icons/icon128.png -------------------------------------------------------------------------------- /wereader-firefox/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/icons/icon16.png -------------------------------------------------------------------------------- /wereader-firefox/icons/icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/icons/icon24.png -------------------------------------------------------------------------------- /wereader-firefox/icons/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/icons/icon32.png -------------------------------------------------------------------------------- /wereader-firefox/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/icons/icon48.png -------------------------------------------------------------------------------- /wereader-firefox/inject/inject-bid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/inject/inject-bid.js -------------------------------------------------------------------------------- /wereader-firefox/inject/inject-copyBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/inject/inject-copyBtn.js -------------------------------------------------------------------------------- /wereader-firefox/inject/inject-copyImgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/inject/inject-copyImgs.js -------------------------------------------------------------------------------- /wereader-firefox/inject/inject-getContents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/inject/inject-getContents.js -------------------------------------------------------------------------------- /wereader-firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/manifest.json -------------------------------------------------------------------------------- /wereader-firefox/options/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/options/help.html -------------------------------------------------------------------------------- /wereader-firefox/options/icons/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/options/icons/add.gif -------------------------------------------------------------------------------- /wereader-firefox/options/icons/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/options/icons/mark.png -------------------------------------------------------------------------------- /wereader-firefox/options/icons/remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/options/icons/remove.gif -------------------------------------------------------------------------------- /wereader-firefox/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/options/options.html -------------------------------------------------------------------------------- /wereader-firefox/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/options/options.js -------------------------------------------------------------------------------- /wereader-firefox/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/popup/popup.html -------------------------------------------------------------------------------- /wereader-firefox/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader-firefox/popup/popup.js -------------------------------------------------------------------------------- /wereader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sancijun/wereader/HEAD/wereader.zip --------------------------------------------------------------------------------