├── .github ├── .gitlab │ └── workflows │ │ └── main.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── issue.md └── workflows │ └── main.yml ├── .gitignore ├── .gitlab └── cicd │ └── main.yml ├── LICENSE ├── README.md ├── declares ├── APIs.d.ts ├── GlobalWindow.d.ts ├── InnerSystemDefined.d.ts ├── Vue │ ├── VueCompilerCore.d.ts │ ├── VueCompilerDom.d.ts │ ├── VueReactivity.d.ts │ ├── VueRumtimeDom.d.ts │ ├── VueRuntimeCore.d.ts │ └── VueShared.d.ts └── XHRProxy.d.ts ├── docs ├── DELETED_FEATURES.md ├── OPENSRC.md ├── THANKS.md ├── TODOLIST.md ├── VERSIONS.md └── components │ ├── ARCH.md │ ├── FEATURE_ADD.md │ ├── MESSAGE.md │ ├── RELEASE.md │ └── XHRPROXY_DRIVER.md ├── global.d.ts ├── gulpfile.js ├── jsconfig.json ├── package.json ├── pages ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ ├── 2019-05-28-first-blog-post.md │ ├── 2019-05-29-long-blog-post.md │ ├── 2021-08-01-mdx-blog-post.mdx │ ├── 2021-08-26-welcome │ │ ├── docusaurus-plushie-banner.jpeg │ │ └── index.md │ ├── 2022-03-10 1.3.15.310.md │ ├── 2022-03-15 1.3.15.315.md │ ├── 2022-03-29 1.3.18.329.md │ ├── 2022-04-13 1.3.18.405.md │ └── authors.yml ├── docs │ ├── features.md │ ├── install.md │ ├── intro.md │ ├── tutorial-basics │ │ ├── _category_.json │ │ ├── congratulations.md │ │ ├── create-a-blog-post.md │ │ ├── create-a-document.md │ │ ├── create-a-page.md │ │ ├── deploy-your-site.md │ │ └── markdown-features.mdx │ └── tutorial-extras │ │ ├── _category_.json │ │ ├── manage-docs-versions.md │ │ └── translate-your-site.md ├── docusaurus.config.js ├── docusaurus.dev.config.js ├── package.json ├── pnpm-lock.yaml ├── sidebars.js ├── src │ ├── components │ │ ├── HomepageFeatures.module.css │ │ └── HomepageFeatures.tsx │ ├── css │ │ └── custom.css │ ├── declares │ │ └── index.d.ts │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── markdown-page.md │ │ └── version.tsx ├── static │ ├── .nojekyll │ └── img │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── tutorial │ │ ├── docsVersionDropdown.png │ │ └── localeDropdown.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg ├── tsconfig.json └── yarn.lock ├── pnpm-lock.yaml ├── src ├── _locales │ ├── en │ │ └── messages.json │ ├── zh_CN │ │ └── messages.json │ └── zh_TW │ │ └── messages.json ├── bg │ ├── ServiceWorker │ │ ├── sworker.js │ │ ├── workbox-cacheable-response.prod.js │ │ ├── workbox-core.prod.js │ │ ├── workbox-expiration.prod.js │ │ ├── workbox-routing.prod.js │ │ ├── workbox-strategies.prod.js │ │ └── workbox-sw.js │ ├── backend.js │ ├── background.html │ ├── bgApis.js │ ├── css │ │ ├── animations.css │ │ ├── checkbox.css │ │ ├── jquery.mloading.css │ │ ├── markdown.css │ │ └── popup.css │ ├── firstRun.html │ ├── images │ │ ├── 1080p.png │ │ ├── Acfun_helper.png │ │ ├── copy_link.png │ │ ├── download.svg │ │ ├── github_icon.svg │ │ ├── goplayegg-github.jpg │ │ ├── lalazhuibushang-github.jpg │ │ ├── loading2.gif │ │ ├── main1.png │ │ ├── notice.png │ │ ├── off.png │ │ ├── on.png │ │ ├── prpr.jpg │ │ ├── selected.png │ │ ├── unselected.png │ │ ├── update-log.png │ │ ├── update-log.svg │ │ ├── upname.png │ │ ├── wpscott-github.jpg │ │ └── zhushou.png │ ├── info.html │ ├── lib │ │ ├── MyArray.js │ │ ├── bbuffer.js │ │ ├── color-thief.umd.js │ │ ├── color-thief.umd.js.map │ │ ├── dexie.min.js │ │ ├── jquery.mloading.js │ │ ├── jqueryExtend.js │ │ ├── lazyload.js │ │ ├── m3u8-parser.min.js │ │ ├── marked.min.js │ │ ├── md5.js │ │ ├── purify.min.js │ │ └── purify.min.js.map │ ├── modules │ │ ├── auth.js │ │ ├── contextMenuMgr.js │ │ ├── indexedrv.js │ │ ├── messager.js │ │ ├── newIndexedrv.js │ │ ├── omnibox.js │ │ ├── upgrade.js │ │ └── watchplan.js │ ├── options.html │ ├── pageHandler │ │ ├── SettingPanel │ │ │ ├── Article │ │ │ │ ├── BanUserInPart.mjs │ │ │ │ ├── BanUserInPart.vue │ │ │ │ ├── MangaMode.mjs │ │ │ │ ├── MangaMode.vue │ │ │ │ ├── index.mjs │ │ │ │ └── index.vue │ │ │ ├── Comment │ │ │ │ ├── AcidFlyout.mjs │ │ │ │ ├── AcidFlyout.vue │ │ │ │ ├── BanUserInComment.mjs │ │ │ │ ├── BanUserInComment.vue │ │ │ │ ├── TagSwitches.mjs │ │ │ │ ├── TagSwitches.vue │ │ │ │ ├── index.mjs │ │ │ │ └── index.vue │ │ │ ├── Common │ │ │ │ ├── AdvanceConfig.mjs │ │ │ │ ├── AdvanceConfig.vue │ │ │ │ ├── ConfigOprt.mjs │ │ │ │ ├── ConfigOprt.vue │ │ │ │ ├── MessageNotification.mjs │ │ │ │ ├── MessageNotification.vue │ │ │ │ ├── index.mjs │ │ │ │ └── index.vue │ │ │ ├── Index │ │ │ │ ├── index.mjs │ │ │ │ └── index.vue │ │ │ ├── Live │ │ │ │ ├── BanInIndex.mjs │ │ │ │ ├── BanInIndex.vue │ │ │ │ ├── DefaultMode.mjs │ │ │ │ ├── DefaultMode.vue │ │ │ │ ├── DeleteMode.mjs │ │ │ │ ├── DeleteMode.vue │ │ │ │ ├── LiveIndex.mjs │ │ │ │ ├── LiveIndex.vue │ │ │ │ ├── Lives.mjs │ │ │ │ ├── Lives.vue │ │ │ │ ├── NoticeUser.mjs │ │ │ │ ├── NoticeUser.vue │ │ │ │ ├── index.mjs │ │ │ │ └── index.vue │ │ │ ├── Main │ │ │ │ ├── Body.mjs │ │ │ │ ├── Body.vue │ │ │ │ ├── Drawer.mjs │ │ │ │ ├── Drawer.vue │ │ │ │ ├── Header.mjs │ │ │ │ └── Header.vue │ │ │ ├── Modules │ │ │ │ ├── ColorTheme.mjs │ │ │ │ └── ColorTheme.vue │ │ │ ├── Pages │ │ │ │ ├── Beautify.mjs │ │ │ │ ├── Beautify.vue │ │ │ │ ├── index.mjs │ │ │ │ └── index.vue │ │ │ ├── Utils │ │ │ │ ├── AutoBanana.mjs │ │ │ │ ├── AutoBanana.vue │ │ │ │ ├── AutoHeart.mjs │ │ │ │ ├── AutoHeart.vue │ │ │ │ ├── UCenter.mjs │ │ │ │ ├── Ucenter.vue │ │ │ │ ├── UserTag.mjs │ │ │ │ ├── UserTag.vue │ │ │ │ ├── index.mjs │ │ │ │ └── index.vue │ │ │ └── Video │ │ │ │ ├── Danmaku.mjs │ │ │ │ ├── Danmaku.vue │ │ │ │ ├── DefaultMode.mjs │ │ │ │ ├── DefaultMode.vue │ │ │ │ ├── FlexProgressBarStyle.mjs │ │ │ │ ├── FlexProgressBarStyle.vue │ │ │ │ ├── Player.mjs │ │ │ │ ├── Player.vue │ │ │ │ ├── QualityStratagy.mjs │ │ │ │ ├── QualityStratagy.vue │ │ │ │ ├── WatchLater.mjs │ │ │ │ ├── WatchLater.vue │ │ │ │ ├── index.mjs │ │ │ │ └── index.vue │ │ ├── SettingPanels.js │ │ ├── info.js │ │ ├── pagehandlerLibs.js │ │ └── welcome.js │ ├── popup.html │ ├── popup │ │ ├── index.js │ │ ├── popupEvent.js │ │ └── renderList.js │ ├── sandbox │ │ ├── agent.js │ │ ├── sandbox.html │ │ └── sandbox.js │ └── singularity.js ├── common │ ├── CoreUtils.js │ ├── consoleProxy.js │ ├── encyclopedia.js │ ├── modulesLib │ │ ├── AcFunDepts.mjs │ │ ├── CommentAreaIterator.mjs │ │ ├── ExtOptionListener.mjs │ │ ├── InterSectionObserverUtil.mjs │ │ ├── MessageCircuitSwitch.mjs │ │ ├── Misc.mjs │ │ ├── PlayerAction.mjs │ │ ├── Probes.mjs │ │ ├── SFCUtil.mjs │ │ ├── Structs.mjs │ │ ├── WebStorageUtil.mjs │ │ └── sizzwooApis.mjs │ ├── uiReact.js │ ├── utils.js │ └── xhr-proxy.js ├── fg │ ├── acfunxhr.js │ ├── css │ │ ├── checkbox.css │ │ ├── client.css │ │ ├── frame.css │ │ ├── home_nav.css │ │ └── lucy.css │ ├── div.js │ ├── fgApis.js │ ├── font │ │ ├── spell-icons.ttf │ │ └── spell-icons.woff │ ├── frame.js │ ├── frontend.js │ ├── img │ │ └── load.gif │ ├── littleMods │ │ ├── ARFP │ │ │ ├── ArticleUidFilter.mjs │ │ │ └── CommentListFilter.mjs │ │ ├── comentConv.js │ │ └── momentConv.js │ ├── modules │ │ ├── authInfo.js │ │ ├── banana.js │ │ ├── block.js │ │ ├── commentEnhance.js │ │ ├── danmaku.js │ │ ├── danmakuSearch.js │ │ ├── download.js │ │ ├── live.js │ │ ├── liveSettingInject.js │ │ ├── livepageBeautify.js │ │ ├── luckyTurntab.js │ │ ├── pageBeautify.js │ │ ├── readMode.js │ │ ├── urlparams.js │ │ ├── videoPageBeautify.js │ │ ├── videoSetting.js │ │ └── videoSettingInject.js │ ├── nav.js │ └── popup.js ├── img │ ├── icon128.png │ ├── icon16.png │ ├── icon32.png │ ├── icon48.png │ └── icon64.png ├── lib │ ├── jquery-3.6.3.min.js │ └── vue.esm-browser.prod.js ├── manifest.json ├── mdui │ ├── css │ │ └── mdui.min.css │ ├── fonts │ │ └── roboto │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.woff │ │ │ └── Roboto-Regular.woff2 │ ├── icons │ │ └── material-icons │ │ │ ├── LICENSE.txt │ │ │ ├── MaterialIcons-Regular.ijmap │ │ │ ├── MaterialIcons-Regular.woff │ │ │ └── MaterialIcons-Regular.woff2 │ └── js │ │ └── mdui.min.js ├── note │ ├── privacy.md │ ├── updateLog.md │ └── userAgreement.md └── snd │ └── banana.mp3 └── webpack.dev.js /.github/.gitlab/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/.github/.gitlab/workflows/main.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab/cicd/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/.gitlab/cicd/main.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/README.md -------------------------------------------------------------------------------- /declares/APIs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/APIs.d.ts -------------------------------------------------------------------------------- /declares/GlobalWindow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/GlobalWindow.d.ts -------------------------------------------------------------------------------- /declares/InnerSystemDefined.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/InnerSystemDefined.d.ts -------------------------------------------------------------------------------- /declares/Vue/VueCompilerCore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/Vue/VueCompilerCore.d.ts -------------------------------------------------------------------------------- /declares/Vue/VueCompilerDom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/Vue/VueCompilerDom.d.ts -------------------------------------------------------------------------------- /declares/Vue/VueReactivity.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/Vue/VueReactivity.d.ts -------------------------------------------------------------------------------- /declares/Vue/VueRumtimeDom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/Vue/VueRumtimeDom.d.ts -------------------------------------------------------------------------------- /declares/Vue/VueRuntimeCore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/Vue/VueRuntimeCore.d.ts -------------------------------------------------------------------------------- /declares/Vue/VueShared.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/Vue/VueShared.d.ts -------------------------------------------------------------------------------- /declares/XHRProxy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/declares/XHRProxy.d.ts -------------------------------------------------------------------------------- /docs/DELETED_FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/DELETED_FEATURES.md -------------------------------------------------------------------------------- /docs/OPENSRC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/OPENSRC.md -------------------------------------------------------------------------------- /docs/THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/THANKS.md -------------------------------------------------------------------------------- /docs/TODOLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/TODOLIST.md -------------------------------------------------------------------------------- /docs/VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/VERSIONS.md -------------------------------------------------------------------------------- /docs/components/ARCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/components/ARCH.md -------------------------------------------------------------------------------- /docs/components/FEATURE_ADD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/components/FEATURE_ADD.md -------------------------------------------------------------------------------- /docs/components/MESSAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/components/MESSAGE.md -------------------------------------------------------------------------------- /docs/components/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/components/RELEASE.md -------------------------------------------------------------------------------- /docs/components/XHRPROXY_DRIVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/docs/components/XHRPROXY_DRIVER.md -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/global.d.ts -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/package.json -------------------------------------------------------------------------------- /pages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/.gitignore -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/babel.config.js -------------------------------------------------------------------------------- /pages/blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /pages/blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /pages/blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /pages/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg -------------------------------------------------------------------------------- /pages/blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /pages/blog/2022-03-10 1.3.15.310.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2022-03-10 1.3.15.310.md -------------------------------------------------------------------------------- /pages/blog/2022-03-15 1.3.15.315.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2022-03-15 1.3.15.315.md -------------------------------------------------------------------------------- /pages/blog/2022-03-29 1.3.18.329.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2022-03-29 1.3.18.329.md -------------------------------------------------------------------------------- /pages/blog/2022-04-13 1.3.18.405.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/2022-04-13 1.3.18.405.md -------------------------------------------------------------------------------- /pages/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/blog/authors.yml -------------------------------------------------------------------------------- /pages/docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/features.md -------------------------------------------------------------------------------- /pages/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/install.md -------------------------------------------------------------------------------- /pages/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/intro.md -------------------------------------------------------------------------------- /pages/docs/tutorial-basics/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-basics/_category_.json -------------------------------------------------------------------------------- /pages/docs/tutorial-basics/congratulations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-basics/congratulations.md -------------------------------------------------------------------------------- /pages/docs/tutorial-basics/create-a-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-basics/create-a-blog-post.md -------------------------------------------------------------------------------- /pages/docs/tutorial-basics/create-a-document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-basics/create-a-document.md -------------------------------------------------------------------------------- /pages/docs/tutorial-basics/create-a-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-basics/create-a-page.md -------------------------------------------------------------------------------- /pages/docs/tutorial-basics/deploy-your-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-basics/deploy-your-site.md -------------------------------------------------------------------------------- /pages/docs/tutorial-basics/markdown-features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-basics/markdown-features.mdx -------------------------------------------------------------------------------- /pages/docs/tutorial-extras/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-extras/_category_.json -------------------------------------------------------------------------------- /pages/docs/tutorial-extras/manage-docs-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-extras/manage-docs-versions.md -------------------------------------------------------------------------------- /pages/docs/tutorial-extras/translate-your-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docs/tutorial-extras/translate-your-site.md -------------------------------------------------------------------------------- /pages/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docusaurus.config.js -------------------------------------------------------------------------------- /pages/docusaurus.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/docusaurus.dev.config.js -------------------------------------------------------------------------------- /pages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/package.json -------------------------------------------------------------------------------- /pages/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/pnpm-lock.yaml -------------------------------------------------------------------------------- /pages/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/sidebars.js -------------------------------------------------------------------------------- /pages/src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /pages/src/components/HomepageFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/src/components/HomepageFeatures.tsx -------------------------------------------------------------------------------- /pages/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/src/css/custom.css -------------------------------------------------------------------------------- /pages/src/declares/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/src/declares/index.d.ts -------------------------------------------------------------------------------- /pages/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/src/pages/index.module.css -------------------------------------------------------------------------------- /pages/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/src/pages/index.tsx -------------------------------------------------------------------------------- /pages/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/src/pages/markdown-page.md -------------------------------------------------------------------------------- /pages/src/pages/version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/src/pages/version.tsx -------------------------------------------------------------------------------- /pages/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/static/img/docusaurus.png -------------------------------------------------------------------------------- /pages/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/static/img/favicon.ico -------------------------------------------------------------------------------- /pages/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/static/img/logo.svg -------------------------------------------------------------------------------- /pages/static/img/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/static/img/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /pages/static/img/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/static/img/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /pages/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /pages/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /pages/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /pages/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/tsconfig.json -------------------------------------------------------------------------------- /pages/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pages/yarn.lock -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /src/bg/ServiceWorker/sworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/ServiceWorker/sworker.js -------------------------------------------------------------------------------- /src/bg/ServiceWorker/workbox-cacheable-response.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/ServiceWorker/workbox-cacheable-response.prod.js -------------------------------------------------------------------------------- /src/bg/ServiceWorker/workbox-core.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/ServiceWorker/workbox-core.prod.js -------------------------------------------------------------------------------- /src/bg/ServiceWorker/workbox-expiration.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/ServiceWorker/workbox-expiration.prod.js -------------------------------------------------------------------------------- /src/bg/ServiceWorker/workbox-routing.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/ServiceWorker/workbox-routing.prod.js -------------------------------------------------------------------------------- /src/bg/ServiceWorker/workbox-strategies.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/ServiceWorker/workbox-strategies.prod.js -------------------------------------------------------------------------------- /src/bg/ServiceWorker/workbox-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/ServiceWorker/workbox-sw.js -------------------------------------------------------------------------------- /src/bg/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/backend.js -------------------------------------------------------------------------------- /src/bg/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/background.html -------------------------------------------------------------------------------- /src/bg/bgApis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/bgApis.js -------------------------------------------------------------------------------- /src/bg/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/css/animations.css -------------------------------------------------------------------------------- /src/bg/css/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/css/checkbox.css -------------------------------------------------------------------------------- /src/bg/css/jquery.mloading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/css/jquery.mloading.css -------------------------------------------------------------------------------- /src/bg/css/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/css/markdown.css -------------------------------------------------------------------------------- /src/bg/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/css/popup.css -------------------------------------------------------------------------------- /src/bg/firstRun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/firstRun.html -------------------------------------------------------------------------------- /src/bg/images/1080p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/1080p.png -------------------------------------------------------------------------------- /src/bg/images/Acfun_helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/Acfun_helper.png -------------------------------------------------------------------------------- /src/bg/images/copy_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/copy_link.png -------------------------------------------------------------------------------- /src/bg/images/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/download.svg -------------------------------------------------------------------------------- /src/bg/images/github_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/github_icon.svg -------------------------------------------------------------------------------- /src/bg/images/goplayegg-github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/goplayegg-github.jpg -------------------------------------------------------------------------------- /src/bg/images/lalazhuibushang-github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/lalazhuibushang-github.jpg -------------------------------------------------------------------------------- /src/bg/images/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/loading2.gif -------------------------------------------------------------------------------- /src/bg/images/main1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/main1.png -------------------------------------------------------------------------------- /src/bg/images/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/notice.png -------------------------------------------------------------------------------- /src/bg/images/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/off.png -------------------------------------------------------------------------------- /src/bg/images/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/on.png -------------------------------------------------------------------------------- /src/bg/images/prpr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/prpr.jpg -------------------------------------------------------------------------------- /src/bg/images/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/selected.png -------------------------------------------------------------------------------- /src/bg/images/unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/unselected.png -------------------------------------------------------------------------------- /src/bg/images/update-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/update-log.png -------------------------------------------------------------------------------- /src/bg/images/update-log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/update-log.svg -------------------------------------------------------------------------------- /src/bg/images/upname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/upname.png -------------------------------------------------------------------------------- /src/bg/images/wpscott-github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/wpscott-github.jpg -------------------------------------------------------------------------------- /src/bg/images/zhushou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/images/zhushou.png -------------------------------------------------------------------------------- /src/bg/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/info.html -------------------------------------------------------------------------------- /src/bg/lib/MyArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/MyArray.js -------------------------------------------------------------------------------- /src/bg/lib/bbuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/bbuffer.js -------------------------------------------------------------------------------- /src/bg/lib/color-thief.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/color-thief.umd.js -------------------------------------------------------------------------------- /src/bg/lib/color-thief.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/color-thief.umd.js.map -------------------------------------------------------------------------------- /src/bg/lib/dexie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/dexie.min.js -------------------------------------------------------------------------------- /src/bg/lib/jquery.mloading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/jquery.mloading.js -------------------------------------------------------------------------------- /src/bg/lib/jqueryExtend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/jqueryExtend.js -------------------------------------------------------------------------------- /src/bg/lib/lazyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/lazyload.js -------------------------------------------------------------------------------- /src/bg/lib/m3u8-parser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/m3u8-parser.min.js -------------------------------------------------------------------------------- /src/bg/lib/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/marked.min.js -------------------------------------------------------------------------------- /src/bg/lib/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/md5.js -------------------------------------------------------------------------------- /src/bg/lib/purify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/purify.min.js -------------------------------------------------------------------------------- /src/bg/lib/purify.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/lib/purify.min.js.map -------------------------------------------------------------------------------- /src/bg/modules/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/modules/auth.js -------------------------------------------------------------------------------- /src/bg/modules/contextMenuMgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/modules/contextMenuMgr.js -------------------------------------------------------------------------------- /src/bg/modules/indexedrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/modules/indexedrv.js -------------------------------------------------------------------------------- /src/bg/modules/messager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/modules/messager.js -------------------------------------------------------------------------------- /src/bg/modules/newIndexedrv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/modules/newIndexedrv.js -------------------------------------------------------------------------------- /src/bg/modules/omnibox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/modules/omnibox.js -------------------------------------------------------------------------------- /src/bg/modules/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/modules/upgrade.js -------------------------------------------------------------------------------- /src/bg/modules/watchplan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/modules/watchplan.js -------------------------------------------------------------------------------- /src/bg/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/options.html -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Article/BanUserInPart.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Article/BanUserInPart.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Article/BanUserInPart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Article/BanUserInPart.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Article/MangaMode.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Article/MangaMode.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Article/MangaMode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Article/MangaMode.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Article/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Article/index.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Article/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Article/index.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Comment/AcidFlyout.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Comment/AcidFlyout.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Comment/AcidFlyout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Comment/AcidFlyout.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Comment/BanUserInComment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Comment/BanUserInComment.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Comment/BanUserInComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Comment/BanUserInComment.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Comment/TagSwitches.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Comment/TagSwitches.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Comment/TagSwitches.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Comment/TagSwitches.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Comment/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Comment/index.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Comment/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Comment/index.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Common/AdvanceConfig.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Common/AdvanceConfig.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Common/AdvanceConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Common/AdvanceConfig.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Common/ConfigOprt.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Common/ConfigOprt.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Common/ConfigOprt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Common/ConfigOprt.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Common/MessageNotification.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Common/MessageNotification.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Common/MessageNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Common/MessageNotification.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Common/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Common/index.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Common/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Common/index.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Index/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Index/index.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Index/index.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/BanInIndex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/BanInIndex.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/BanInIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/BanInIndex.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/DefaultMode.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/DefaultMode.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/DefaultMode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/DefaultMode.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/DeleteMode.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/DeleteMode.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/DeleteMode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/DeleteMode.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/LiveIndex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/LiveIndex.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/LiveIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/LiveIndex.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/Lives.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/Lives.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/Lives.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/Lives.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/NoticeUser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/NoticeUser.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/NoticeUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/NoticeUser.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/index.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Live/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Live/index.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Main/Body.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Main/Body.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Main/Body.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Main/Body.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Main/Drawer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Main/Drawer.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Main/Drawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Main/Drawer.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Main/Header.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Main/Header.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Main/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Main/Header.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Modules/ColorTheme.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Modules/ColorTheme.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Modules/ColorTheme.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Modules/ColorTheme.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Pages/Beautify.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Pages/Beautify.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Pages/Beautify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Pages/Beautify.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Pages/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Pages/index.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Pages/index.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/AutoBanana.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/AutoBanana.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/AutoBanana.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/AutoBanana.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/AutoHeart.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/AutoHeart.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/AutoHeart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/AutoHeart.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/UCenter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/UCenter.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/Ucenter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/Ucenter.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/UserTag.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/UserTag.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/UserTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/UserTag.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/index.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Utils/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Utils/index.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/Danmaku.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/Danmaku.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/Danmaku.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/Danmaku.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/DefaultMode.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/DefaultMode.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/DefaultMode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/DefaultMode.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/FlexProgressBarStyle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/FlexProgressBarStyle.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/FlexProgressBarStyle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/FlexProgressBarStyle.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/Player.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/Player.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/Player.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/Player.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/QualityStratagy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/QualityStratagy.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/QualityStratagy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/QualityStratagy.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/WatchLater.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/WatchLater.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/WatchLater.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/WatchLater.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/index.mjs -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanel/Video/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanel/Video/index.vue -------------------------------------------------------------------------------- /src/bg/pageHandler/SettingPanels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/SettingPanels.js -------------------------------------------------------------------------------- /src/bg/pageHandler/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/info.js -------------------------------------------------------------------------------- /src/bg/pageHandler/pagehandlerLibs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/pagehandlerLibs.js -------------------------------------------------------------------------------- /src/bg/pageHandler/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/pageHandler/welcome.js -------------------------------------------------------------------------------- /src/bg/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/popup.html -------------------------------------------------------------------------------- /src/bg/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/popup/index.js -------------------------------------------------------------------------------- /src/bg/popup/popupEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/popup/popupEvent.js -------------------------------------------------------------------------------- /src/bg/popup/renderList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/popup/renderList.js -------------------------------------------------------------------------------- /src/bg/sandbox/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/sandbox/agent.js -------------------------------------------------------------------------------- /src/bg/sandbox/sandbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/sandbox/sandbox.html -------------------------------------------------------------------------------- /src/bg/sandbox/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/sandbox/sandbox.js -------------------------------------------------------------------------------- /src/bg/singularity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/bg/singularity.js -------------------------------------------------------------------------------- /src/common/CoreUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/CoreUtils.js -------------------------------------------------------------------------------- /src/common/consoleProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/consoleProxy.js -------------------------------------------------------------------------------- /src/common/encyclopedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/encyclopedia.js -------------------------------------------------------------------------------- /src/common/modulesLib/AcFunDepts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/AcFunDepts.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/CommentAreaIterator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/CommentAreaIterator.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/ExtOptionListener.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/ExtOptionListener.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/InterSectionObserverUtil.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/InterSectionObserverUtil.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/MessageCircuitSwitch.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/MessageCircuitSwitch.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/Misc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/Misc.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/PlayerAction.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/PlayerAction.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/Probes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/Probes.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/SFCUtil.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/SFCUtil.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/Structs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/Structs.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/WebStorageUtil.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/WebStorageUtil.mjs -------------------------------------------------------------------------------- /src/common/modulesLib/sizzwooApis.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/modulesLib/sizzwooApis.mjs -------------------------------------------------------------------------------- /src/common/uiReact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/uiReact.js -------------------------------------------------------------------------------- /src/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/utils.js -------------------------------------------------------------------------------- /src/common/xhr-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/common/xhr-proxy.js -------------------------------------------------------------------------------- /src/fg/acfunxhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/acfunxhr.js -------------------------------------------------------------------------------- /src/fg/css/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/css/checkbox.css -------------------------------------------------------------------------------- /src/fg/css/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/css/client.css -------------------------------------------------------------------------------- /src/fg/css/frame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/css/frame.css -------------------------------------------------------------------------------- /src/fg/css/home_nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/css/home_nav.css -------------------------------------------------------------------------------- /src/fg/css/lucy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/css/lucy.css -------------------------------------------------------------------------------- /src/fg/div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/div.js -------------------------------------------------------------------------------- /src/fg/fgApis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/fgApis.js -------------------------------------------------------------------------------- /src/fg/font/spell-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/font/spell-icons.ttf -------------------------------------------------------------------------------- /src/fg/font/spell-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/font/spell-icons.woff -------------------------------------------------------------------------------- /src/fg/frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/frame.js -------------------------------------------------------------------------------- /src/fg/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/frontend.js -------------------------------------------------------------------------------- /src/fg/img/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/img/load.gif -------------------------------------------------------------------------------- /src/fg/littleMods/ARFP/ArticleUidFilter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/littleMods/ARFP/ArticleUidFilter.mjs -------------------------------------------------------------------------------- /src/fg/littleMods/ARFP/CommentListFilter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/littleMods/ARFP/CommentListFilter.mjs -------------------------------------------------------------------------------- /src/fg/littleMods/comentConv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/littleMods/comentConv.js -------------------------------------------------------------------------------- /src/fg/littleMods/momentConv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/littleMods/momentConv.js -------------------------------------------------------------------------------- /src/fg/modules/authInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/authInfo.js -------------------------------------------------------------------------------- /src/fg/modules/banana.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/banana.js -------------------------------------------------------------------------------- /src/fg/modules/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/block.js -------------------------------------------------------------------------------- /src/fg/modules/commentEnhance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/commentEnhance.js -------------------------------------------------------------------------------- /src/fg/modules/danmaku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/danmaku.js -------------------------------------------------------------------------------- /src/fg/modules/danmakuSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/danmakuSearch.js -------------------------------------------------------------------------------- /src/fg/modules/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/download.js -------------------------------------------------------------------------------- /src/fg/modules/live.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/live.js -------------------------------------------------------------------------------- /src/fg/modules/liveSettingInject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/liveSettingInject.js -------------------------------------------------------------------------------- /src/fg/modules/livepageBeautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/livepageBeautify.js -------------------------------------------------------------------------------- /src/fg/modules/luckyTurntab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/luckyTurntab.js -------------------------------------------------------------------------------- /src/fg/modules/pageBeautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/pageBeautify.js -------------------------------------------------------------------------------- /src/fg/modules/readMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/readMode.js -------------------------------------------------------------------------------- /src/fg/modules/urlparams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/urlparams.js -------------------------------------------------------------------------------- /src/fg/modules/videoPageBeautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/videoPageBeautify.js -------------------------------------------------------------------------------- /src/fg/modules/videoSetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/videoSetting.js -------------------------------------------------------------------------------- /src/fg/modules/videoSettingInject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/modules/videoSettingInject.js -------------------------------------------------------------------------------- /src/fg/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/nav.js -------------------------------------------------------------------------------- /src/fg/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/fg/popup.js -------------------------------------------------------------------------------- /src/img/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/img/icon128.png -------------------------------------------------------------------------------- /src/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/img/icon16.png -------------------------------------------------------------------------------- /src/img/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/img/icon32.png -------------------------------------------------------------------------------- /src/img/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/img/icon48.png -------------------------------------------------------------------------------- /src/img/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/img/icon64.png -------------------------------------------------------------------------------- /src/lib/jquery-3.6.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/lib/jquery-3.6.3.min.js -------------------------------------------------------------------------------- /src/lib/vue.esm-browser.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/lib/vue.esm-browser.prod.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/mdui/css/mdui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/css/mdui.min.css -------------------------------------------------------------------------------- /src/mdui/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /src/mdui/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /src/mdui/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /src/mdui/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /src/mdui/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/mdui/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /src/mdui/icons/material-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/icons/material-icons/LICENSE.txt -------------------------------------------------------------------------------- /src/mdui/icons/material-icons/MaterialIcons-Regular.ijmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/icons/material-icons/MaterialIcons-Regular.ijmap -------------------------------------------------------------------------------- /src/mdui/icons/material-icons/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/icons/material-icons/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /src/mdui/icons/material-icons/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/icons/material-icons/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /src/mdui/js/mdui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/mdui/js/mdui.min.js -------------------------------------------------------------------------------- /src/note/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/note/privacy.md -------------------------------------------------------------------------------- /src/note/updateLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/note/updateLog.md -------------------------------------------------------------------------------- /src/note/userAgreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/note/userAgreement.md -------------------------------------------------------------------------------- /src/snd/banana.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/src/snd/banana.mp3 -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niuchaobo/acfun-helper/HEAD/webpack.dev.js --------------------------------------------------------------------------------