├── .eslintignore ├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── Pixiv-Fanbox-Downloader.crx ├── Readme-EN.md ├── Readme-JA.md ├── Readme-KO.md ├── Readme-ZH-TW.md ├── Readme.md ├── changelog.md ├── dist ├── LICENSE ├── Readme-EN.md ├── Readme-KO.md ├── Readme-ZH-TW.md ├── Readme.md ├── icon │ ├── logo128.png │ ├── logo16.png │ ├── logo32.png │ └── logo48.png ├── js │ ├── background.js │ ├── background.js.map │ ├── content.js │ └── content.js.map ├── lib │ ├── iconfont.js │ └── listen_history_change.js ├── manifest.json └── style │ └── style.css ├── docs ├── fanbox.md ├── images │ ├── 20221111_184553.jpg │ ├── 20240328_213518.png │ ├── 20240329_011618.png │ ├── 20240425_173348.jpg │ ├── 20240425_173732.jpg │ ├── 20240425_173845.jpg │ ├── 20240425_174247.jpg │ ├── 20240425_174337.jpg │ ├── 20240425_174413.jpg │ ├── 20240425_175223.jpg │ ├── 20240425_175844.jpg │ ├── 20240806_192341.jpg │ ├── 20240806_195505.jpg │ ├── 20250725_003250.png │ └── 20250725_020346.png ├── 下载出现错误时的重试机制.md ├── 保存网盘链接的问题.md ├── 关于在不同画师页面之间同步设置的功能的调查.md └── 在安卓上通过kiwi浏览器使用此扩展.md ├── pack.js ├── package.json ├── screenshot ├── ui-1.png ├── ui-2.png ├── ui-3.png ├── ui-4.png └── ui-5.png ├── src ├── manifest.json ├── static │ ├── icon │ │ ├── logo128.png │ │ ├── logo16.png │ │ ├── logo32.png │ │ └── logo48.png │ └── lib │ │ ├── iconfont.js │ │ └── listen_history_change.js ├── style │ ├── centerPanel.css │ ├── centerPanel.less │ ├── log.css │ ├── log.less │ ├── msgBox.css │ ├── msgBox.less │ ├── outputWrap.less │ ├── rightButtons.less │ ├── style.less │ ├── var.css │ └── var.less └── ts │ ├── API.ts │ ├── BG.ts │ ├── BoldKeywords.ts │ ├── CenterPanel.ts │ ├── CheckUnsupportBrowser.ts │ ├── Colors.ts │ ├── Config.ts │ ├── CrawlInterval.ts │ ├── CrawlResult.d.ts │ ├── EVT.ts │ ├── FileName.ts │ ├── Filter.ts │ ├── FormHTML.ts │ ├── InitHomePage.ts │ ├── InitPage.ts │ ├── InitPageBase.ts │ ├── InitPostListPage.ts │ ├── InitPostPage.ts │ ├── InitShopPage.ts │ ├── InitTagPage.ts │ ├── Lang.ts │ ├── ListenPageSwitch.ts │ ├── Log.ts │ ├── MsgBox.ts │ ├── OpenCenterPanel.ts │ ├── OutputPanel.ts │ ├── PageType.ts │ ├── ProgressBar.ts │ ├── QuickCrawl.ts │ ├── SaveData.ts │ ├── ShowHowToUse.ts │ ├── ShowNotification.ts │ ├── ShowWhatIsNew.ts │ ├── States.ts │ ├── Store.ts │ ├── StoreType.ts │ ├── Tip.ts │ ├── Toast.ts │ ├── Tools.ts │ ├── TotalDownload.ts │ ├── UnifiedURL.ts │ ├── background.ts │ ├── content.ts │ ├── download │ ├── Download.ts │ ├── DownloadControl.ts │ ├── DownloadInterval.ts │ ├── DownloadRecord.ts │ ├── DownloadStates.ts │ ├── DownloadType.ts │ ├── GetTotalDownload.ts │ ├── Resume.ts │ ├── ShowSkipCount.ts │ └── showStatusOnTitle.ts │ ├── langText.ts │ ├── setting │ ├── Form.ts │ ├── FormSettings.ts │ ├── NameRuleManager.ts │ ├── Options.ts │ ├── SaveNamingRule.ts │ ├── Settings.ts │ └── SettingsForm.ts │ └── utils │ ├── DateFormat.ts │ ├── IndexedDB.ts │ └── Utils.ts ├── tsconfig.json └── webpack.conf.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /Pixiv-Fanbox-Downloader.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/Pixiv-Fanbox-Downloader.crx -------------------------------------------------------------------------------- /Readme-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/Readme-EN.md -------------------------------------------------------------------------------- /Readme-JA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/Readme-JA.md -------------------------------------------------------------------------------- /Readme-KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/Readme-KO.md -------------------------------------------------------------------------------- /Readme-ZH-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/Readme-ZH-TW.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/Readme.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/changelog.md -------------------------------------------------------------------------------- /dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/LICENSE -------------------------------------------------------------------------------- /dist/Readme-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/Readme-EN.md -------------------------------------------------------------------------------- /dist/Readme-KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/Readme-KO.md -------------------------------------------------------------------------------- /dist/Readme-ZH-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/Readme-ZH-TW.md -------------------------------------------------------------------------------- /dist/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/Readme.md -------------------------------------------------------------------------------- /dist/icon/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/icon/logo128.png -------------------------------------------------------------------------------- /dist/icon/logo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/icon/logo16.png -------------------------------------------------------------------------------- /dist/icon/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/icon/logo32.png -------------------------------------------------------------------------------- /dist/icon/logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/icon/logo48.png -------------------------------------------------------------------------------- /dist/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/js/background.js -------------------------------------------------------------------------------- /dist/js/background.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/js/background.js.map -------------------------------------------------------------------------------- /dist/js/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/js/content.js -------------------------------------------------------------------------------- /dist/js/content.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/js/content.js.map -------------------------------------------------------------------------------- /dist/lib/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/lib/iconfont.js -------------------------------------------------------------------------------- /dist/lib/listen_history_change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/lib/listen_history_change.js -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/manifest.json -------------------------------------------------------------------------------- /dist/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/dist/style/style.css -------------------------------------------------------------------------------- /docs/fanbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/fanbox.md -------------------------------------------------------------------------------- /docs/images/20221111_184553.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20221111_184553.jpg -------------------------------------------------------------------------------- /docs/images/20240328_213518.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240328_213518.png -------------------------------------------------------------------------------- /docs/images/20240329_011618.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240329_011618.png -------------------------------------------------------------------------------- /docs/images/20240425_173348.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240425_173348.jpg -------------------------------------------------------------------------------- /docs/images/20240425_173732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240425_173732.jpg -------------------------------------------------------------------------------- /docs/images/20240425_173845.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240425_173845.jpg -------------------------------------------------------------------------------- /docs/images/20240425_174247.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240425_174247.jpg -------------------------------------------------------------------------------- /docs/images/20240425_174337.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240425_174337.jpg -------------------------------------------------------------------------------- /docs/images/20240425_174413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240425_174413.jpg -------------------------------------------------------------------------------- /docs/images/20240425_175223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240425_175223.jpg -------------------------------------------------------------------------------- /docs/images/20240425_175844.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240425_175844.jpg -------------------------------------------------------------------------------- /docs/images/20240806_192341.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240806_192341.jpg -------------------------------------------------------------------------------- /docs/images/20240806_195505.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20240806_195505.jpg -------------------------------------------------------------------------------- /docs/images/20250725_003250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20250725_003250.png -------------------------------------------------------------------------------- /docs/images/20250725_020346.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/images/20250725_020346.png -------------------------------------------------------------------------------- /docs/下载出现错误时的重试机制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/下载出现错误时的重试机制.md -------------------------------------------------------------------------------- /docs/保存网盘链接的问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/保存网盘链接的问题.md -------------------------------------------------------------------------------- /docs/关于在不同画师页面之间同步设置的功能的调查.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/关于在不同画师页面之间同步设置的功能的调查.md -------------------------------------------------------------------------------- /docs/在安卓上通过kiwi浏览器使用此扩展.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/docs/在安卓上通过kiwi浏览器使用此扩展.md -------------------------------------------------------------------------------- /pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/pack.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/ui-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/screenshot/ui-1.png -------------------------------------------------------------------------------- /screenshot/ui-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/screenshot/ui-2.png -------------------------------------------------------------------------------- /screenshot/ui-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/screenshot/ui-3.png -------------------------------------------------------------------------------- /screenshot/ui-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/screenshot/ui-4.png -------------------------------------------------------------------------------- /screenshot/ui-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/screenshot/ui-5.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/static/icon/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/static/icon/logo128.png -------------------------------------------------------------------------------- /src/static/icon/logo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/static/icon/logo16.png -------------------------------------------------------------------------------- /src/static/icon/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/static/icon/logo32.png -------------------------------------------------------------------------------- /src/static/icon/logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/static/icon/logo48.png -------------------------------------------------------------------------------- /src/static/lib/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/static/lib/iconfont.js -------------------------------------------------------------------------------- /src/static/lib/listen_history_change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/static/lib/listen_history_change.js -------------------------------------------------------------------------------- /src/style/centerPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/centerPanel.css -------------------------------------------------------------------------------- /src/style/centerPanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/centerPanel.less -------------------------------------------------------------------------------- /src/style/log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/log.css -------------------------------------------------------------------------------- /src/style/log.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/log.less -------------------------------------------------------------------------------- /src/style/msgBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/msgBox.css -------------------------------------------------------------------------------- /src/style/msgBox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/msgBox.less -------------------------------------------------------------------------------- /src/style/outputWrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/outputWrap.less -------------------------------------------------------------------------------- /src/style/rightButtons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/rightButtons.less -------------------------------------------------------------------------------- /src/style/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/style.less -------------------------------------------------------------------------------- /src/style/var.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/style/var.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/style/var.less -------------------------------------------------------------------------------- /src/ts/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/API.ts -------------------------------------------------------------------------------- /src/ts/BG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/BG.ts -------------------------------------------------------------------------------- /src/ts/BoldKeywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/BoldKeywords.ts -------------------------------------------------------------------------------- /src/ts/CenterPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/CenterPanel.ts -------------------------------------------------------------------------------- /src/ts/CheckUnsupportBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/CheckUnsupportBrowser.ts -------------------------------------------------------------------------------- /src/ts/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Colors.ts -------------------------------------------------------------------------------- /src/ts/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Config.ts -------------------------------------------------------------------------------- /src/ts/CrawlInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/CrawlInterval.ts -------------------------------------------------------------------------------- /src/ts/CrawlResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/CrawlResult.d.ts -------------------------------------------------------------------------------- /src/ts/EVT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/EVT.ts -------------------------------------------------------------------------------- /src/ts/FileName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/FileName.ts -------------------------------------------------------------------------------- /src/ts/Filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Filter.ts -------------------------------------------------------------------------------- /src/ts/FormHTML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/FormHTML.ts -------------------------------------------------------------------------------- /src/ts/InitHomePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/InitHomePage.ts -------------------------------------------------------------------------------- /src/ts/InitPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/InitPage.ts -------------------------------------------------------------------------------- /src/ts/InitPageBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/InitPageBase.ts -------------------------------------------------------------------------------- /src/ts/InitPostListPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/InitPostListPage.ts -------------------------------------------------------------------------------- /src/ts/InitPostPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/InitPostPage.ts -------------------------------------------------------------------------------- /src/ts/InitShopPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/InitShopPage.ts -------------------------------------------------------------------------------- /src/ts/InitTagPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/InitTagPage.ts -------------------------------------------------------------------------------- /src/ts/Lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Lang.ts -------------------------------------------------------------------------------- /src/ts/ListenPageSwitch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/ListenPageSwitch.ts -------------------------------------------------------------------------------- /src/ts/Log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Log.ts -------------------------------------------------------------------------------- /src/ts/MsgBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/MsgBox.ts -------------------------------------------------------------------------------- /src/ts/OpenCenterPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/OpenCenterPanel.ts -------------------------------------------------------------------------------- /src/ts/OutputPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/OutputPanel.ts -------------------------------------------------------------------------------- /src/ts/PageType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/PageType.ts -------------------------------------------------------------------------------- /src/ts/ProgressBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/ProgressBar.ts -------------------------------------------------------------------------------- /src/ts/QuickCrawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/QuickCrawl.ts -------------------------------------------------------------------------------- /src/ts/SaveData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/SaveData.ts -------------------------------------------------------------------------------- /src/ts/ShowHowToUse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/ShowHowToUse.ts -------------------------------------------------------------------------------- /src/ts/ShowNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/ShowNotification.ts -------------------------------------------------------------------------------- /src/ts/ShowWhatIsNew.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/ShowWhatIsNew.ts -------------------------------------------------------------------------------- /src/ts/States.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/States.ts -------------------------------------------------------------------------------- /src/ts/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Store.ts -------------------------------------------------------------------------------- /src/ts/StoreType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/StoreType.ts -------------------------------------------------------------------------------- /src/ts/Tip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Tip.ts -------------------------------------------------------------------------------- /src/ts/Toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Toast.ts -------------------------------------------------------------------------------- /src/ts/Tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/Tools.ts -------------------------------------------------------------------------------- /src/ts/TotalDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/TotalDownload.ts -------------------------------------------------------------------------------- /src/ts/UnifiedURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/UnifiedURL.ts -------------------------------------------------------------------------------- /src/ts/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/background.ts -------------------------------------------------------------------------------- /src/ts/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/content.ts -------------------------------------------------------------------------------- /src/ts/download/Download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/Download.ts -------------------------------------------------------------------------------- /src/ts/download/DownloadControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/DownloadControl.ts -------------------------------------------------------------------------------- /src/ts/download/DownloadInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/DownloadInterval.ts -------------------------------------------------------------------------------- /src/ts/download/DownloadRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/DownloadRecord.ts -------------------------------------------------------------------------------- /src/ts/download/DownloadStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/DownloadStates.ts -------------------------------------------------------------------------------- /src/ts/download/DownloadType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/DownloadType.ts -------------------------------------------------------------------------------- /src/ts/download/GetTotalDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/GetTotalDownload.ts -------------------------------------------------------------------------------- /src/ts/download/Resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/Resume.ts -------------------------------------------------------------------------------- /src/ts/download/ShowSkipCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/ShowSkipCount.ts -------------------------------------------------------------------------------- /src/ts/download/showStatusOnTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/download/showStatusOnTitle.ts -------------------------------------------------------------------------------- /src/ts/langText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/langText.ts -------------------------------------------------------------------------------- /src/ts/setting/Form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/setting/Form.ts -------------------------------------------------------------------------------- /src/ts/setting/FormSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/setting/FormSettings.ts -------------------------------------------------------------------------------- /src/ts/setting/NameRuleManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/setting/NameRuleManager.ts -------------------------------------------------------------------------------- /src/ts/setting/Options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/setting/Options.ts -------------------------------------------------------------------------------- /src/ts/setting/SaveNamingRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/setting/SaveNamingRule.ts -------------------------------------------------------------------------------- /src/ts/setting/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/setting/Settings.ts -------------------------------------------------------------------------------- /src/ts/setting/SettingsForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/setting/SettingsForm.ts -------------------------------------------------------------------------------- /src/ts/utils/DateFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/utils/DateFormat.ts -------------------------------------------------------------------------------- /src/ts/utils/IndexedDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/utils/IndexedDB.ts -------------------------------------------------------------------------------- /src/ts/utils/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/src/ts/utils/Utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuejianxianzun/PixivFanboxDownloader/HEAD/webpack.conf.js --------------------------------------------------------------------------------