├── .browserslistrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github-json ├── README.md ├── data │ ├── DISCUSSION_TEMPLATE │ │ └── 功能建议-ideas.json │ ├── FUNDING.json │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.json │ │ └── config.json │ └── workflows │ │ ├── build.json │ │ └── pull-request-check.json └── index.ts ├── .github ├── DISCUSSION_TEMPLATE │ └── 功能建议-ideas.yml ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ └── pull-request-check.yml ├── .gitignore ├── .prettierrc ├── .vscode ├── dynamic-import.code-snippets ├── html-in-js.code-snippets ├── launch.json ├── settings.json ├── tasks.json ├── ui-import.code-snippets └── vue-import.code-snippets ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENCE.md ├── README.md ├── bilibili-evolved.offline.user.js ├── dev-tools ├── dev-server │ ├── config.ts │ ├── core-watcher.ts │ ├── design.md │ ├── index.ts │ ├── payload.ts │ ├── registry-watcher.ts │ ├── server.ts │ ├── tsconfig.json │ ├── watcher-common.ts │ └── web-socket-server.ts └── donate-table │ ├── index.ts │ ├── package.json │ ├── pnpm-lock.yaml │ └── tsconfig.json ├── dist ├── bilibili-evolved.preview.user.js └── bilibili-evolved.user.js ├── doc ├── aria2-notice.md ├── cdn.md ├── donate.md ├── features │ ├── features.json │ ├── features.md │ └── pack │ │ ├── pack.json │ │ └── pack.md ├── issue-rules.md ├── release-checklist.md ├── rollback.md └── v1-migrate.md ├── docs ├── README.md └── static │ └── mdi │ ├── mdi.css │ └── mdi.woff2 ├── images ├── bilibili-evolved-wide-color.svg ├── bilibili-evolved-wide-dark.svg ├── bilibili-evolved-wide.svg ├── compressed │ ├── afdian.jpg │ └── wechat.jpg ├── logo-small.png ├── logo.png └── v2 │ ├── about-panel.jpg │ ├── manage-panel.jpg │ ├── settings-panel.jpg │ └── side-panel.jpg ├── package.json ├── pnpm-lock.yaml ├── registry ├── dist │ ├── components │ │ ├── feeds │ │ │ ├── copy-link.js │ │ │ ├── del-feeds.js │ │ │ ├── disable-details.js │ │ │ ├── extend-live.js │ │ │ ├── filter.js │ │ │ ├── fixed-sidebars.js │ │ │ ├── fold-comments.js │ │ │ ├── full-content.js │ │ │ ├── full-title.js │ │ │ ├── group-filter.js │ │ │ ├── hide-comment-preview.js │ │ │ ├── image-auto-back-to-top.js │ │ │ ├── legacy-image-viewer.js │ │ │ ├── translate.js │ │ │ └── unfold.js │ │ ├── live │ │ │ ├── badge-helper.js │ │ │ ├── badge-keepalive.js │ │ │ ├── chat-panel-fit.js │ │ │ ├── danmaku-sendbar.js │ │ │ ├── download-records.js │ │ │ ├── gift-box.js │ │ │ ├── hide-gift-fullscreen.js │ │ │ ├── hide-player-blur.js │ │ │ ├── home-mute.js │ │ │ ├── liveroom-username-link.js │ │ │ ├── original.js │ │ │ ├── remove-mask-panel.js │ │ │ ├── remove-watermark.js │ │ │ ├── showgirl.js │ │ │ └── side-bar.js │ │ ├── style │ │ │ ├── always-show-duration.js │ │ │ ├── auto-hide-sidebar.js │ │ │ ├── clear-home.js │ │ │ ├── custom-font-family.js │ │ │ ├── custom-navbar.js │ │ │ ├── dark-mode.js │ │ │ ├── dark-mode │ │ │ │ ├── follow-system.js │ │ │ │ └── schedule.js │ │ │ ├── hide │ │ │ │ ├── bangumi │ │ │ │ │ ├── reviews.js │ │ │ │ │ └── sponsors.js │ │ │ │ ├── banner.js │ │ │ │ ├── home-carousel.js │ │ │ │ ├── trending-search.js │ │ │ │ ├── user-card.js │ │ │ │ ├── user-pendent.js │ │ │ │ └── video │ │ │ │ │ ├── notes.js │ │ │ │ │ ├── recommended-live.js │ │ │ │ │ ├── related-videos.js │ │ │ │ │ ├── report.js │ │ │ │ │ ├── share.js │ │ │ │ │ └── top-mask.js │ │ │ ├── home-redesign │ │ │ │ ├── fresh.js │ │ │ │ └── minimal.js │ │ │ ├── player-on-top-new.js │ │ │ ├── player-on-top.js │ │ │ ├── player-shadow.js │ │ │ ├── scrollbar.js │ │ │ ├── sidebar-offset.js │ │ │ ├── simplify │ │ │ │ ├── comments.js │ │ │ │ ├── home.js │ │ │ │ └── live.js │ │ │ ├── special-danmaku.js │ │ │ └── v1-panel.js │ │ ├── touch │ │ │ ├── combo-like.js │ │ │ ├── double-click-control.js │ │ │ ├── mini-player.js │ │ │ ├── player-control.js │ │ │ └── player-gestures.js │ │ ├── utils │ │ │ ├── active-video-links.js │ │ │ ├── album-time-show.js │ │ │ ├── auto-like.js │ │ │ ├── black-list.js │ │ │ ├── change-update-urls.js │ │ │ ├── check-in-center.js │ │ │ ├── column-unlock.js │ │ │ ├── comments │ │ │ │ ├── content-replace.js │ │ │ │ ├── content-replace │ │ │ │ │ └── handlers.js │ │ │ │ ├── copy-link.js │ │ │ │ ├── disable-search-link.js │ │ │ │ └── translate.js │ │ │ ├── dev-client.js │ │ │ ├── download-audio.js │ │ │ ├── download-emoticons.js │ │ │ ├── image-exporter.js │ │ │ ├── image-resolution.js │ │ │ ├── import-series.js │ │ │ ├── ip-show.js │ │ │ ├── keymap.js │ │ │ ├── remove-promotions.js │ │ │ ├── subscribe-time-show.js │ │ │ ├── url-params-clean.js │ │ │ ├── v1-migrate.js │ │ │ ├── view-cover.js │ │ │ ├── watchlater-page-redirect.js │ │ │ └── watchlater-redirect.js │ │ └── video │ │ │ ├── auto-remove-watchlater.js │ │ │ ├── av-url.js │ │ │ ├── biliplus-redirect.js │ │ │ ├── bvid-convert.js │ │ │ ├── danmaku │ │ │ ├── airborne.js │ │ │ ├── download.js │ │ │ ├── expand.js │ │ │ └── unescape.js │ │ │ ├── default-location.js │ │ │ ├── download.js │ │ │ ├── full-description.js │ │ │ ├── full-episode-title.js │ │ │ ├── metadata.js │ │ │ ├── outer-watchlater.js │ │ │ ├── player │ │ │ ├── auto-light.js │ │ │ ├── common │ │ │ │ ├── mini-rxjs.js │ │ │ │ └── mini-rxjs │ │ │ │ │ └── operators │ │ │ │ │ └── util.js │ │ │ ├── control-background.js │ │ │ ├── default-mode.js │ │ │ ├── disable-double-click-fullscreen.js │ │ │ ├── disable-scroll-volume.js │ │ │ ├── double-click-fullscreen.js │ │ │ ├── extend-speed.js │ │ │ ├── focus.js │ │ │ ├── intersection-actions.js │ │ │ ├── invert-scroll-volume.js │ │ │ ├── legacy-auto-play.js │ │ │ ├── preserve-danmaku-input.js │ │ │ ├── remember-speed.js │ │ │ ├── remove-popup.js │ │ │ ├── screenshot.js │ │ │ ├── seek-by-frames.js │ │ │ ├── show-cover.js │ │ │ ├── show-upload-time.js │ │ │ └── skip-charge-list.js │ │ │ ├── quick-favorite.js │ │ │ ├── seo-redirect.js │ │ │ └── subtitle │ │ │ └── download.js │ └── plugins │ │ ├── feeds │ │ └── filter │ │ │ ├── hide-charge-feeds.js │ │ │ └── hide-goods.js │ │ ├── i18n │ │ ├── en-US.js │ │ └── ja-JP.js │ │ ├── launch-bar │ │ ├── audio-search.js │ │ ├── bangumi-search.js │ │ ├── cv-search.js │ │ ├── number-search.js │ │ ├── trending-search.js │ │ └── uid-search.js │ │ ├── settings-panel │ │ └── recent-components.js │ │ ├── style │ │ ├── custom-navbar-channel.js │ │ ├── custom-navbar-dark-mode.js │ │ └── custom-navbar-pgc.js │ │ ├── utils │ │ ├── keymap-dark-mode.js │ │ ├── keymap-empty-action.ts.js │ │ ├── keymap-toggle-danmaku-list.js │ │ ├── keymap-toggle-player-light.js │ │ └── keymap-toggle-subtitle.js │ │ ├── v-loading │ │ └── reimu.js │ │ └── video │ │ ├── download │ │ ├── aria2-output.js │ │ ├── empty-output.js │ │ ├── idm-output.js │ │ ├── manual-input.js │ │ ├── motrix-output.js │ │ ├── mpv-output-ex.js │ │ ├── mpv-output-playlist.js │ │ ├── mpv-output.js │ │ └── wasm-output.js │ │ └── player │ │ └── speed.js ├── lib │ ├── components │ │ ├── feeds │ │ │ ├── _feeds-panel-shared.scss │ │ │ ├── copy-link │ │ │ │ └── index.ts │ │ │ ├── del-feeds │ │ │ │ ├── Widget.vue │ │ │ │ ├── check-in-item.ts │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── disable-details │ │ │ │ ├── disable-details.scss │ │ │ │ ├── index.ts │ │ │ │ └── init.scss │ │ │ ├── extend-live │ │ │ │ ├── ExtraOptions.vue │ │ │ │ ├── FollowingListSelect.vue │ │ │ │ ├── LiveList.vue │ │ │ │ ├── extend-feeds-live.scss │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ ├── options.ts │ │ │ │ └── types.ts │ │ │ ├── filter │ │ │ │ ├── FeedsFilterCard.vue │ │ │ │ ├── FilterTypeSwitch.vue │ │ │ │ ├── _blocker.scss │ │ │ │ ├── feeds-filter.md │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ ├── options.ts │ │ │ │ ├── pattern.ts │ │ │ │ └── plugin.ts │ │ │ ├── fixed-sidebars │ │ │ │ ├── fixed-sidebars.scss │ │ │ │ └── index.ts │ │ │ ├── fold-comments │ │ │ │ ├── fold-comment-shadow.scss │ │ │ │ ├── fold-comment.scss │ │ │ │ └── index.ts │ │ │ ├── full-content │ │ │ │ ├── full-content.scss │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── full-title │ │ │ │ ├── full-feeds-title.scss │ │ │ │ └── index.ts │ │ │ ├── group-filter │ │ │ │ ├── FilterPanel.vue │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── hide-comment-preview │ │ │ │ ├── hide-comment-preview.scss │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── image-auto-back-to-top │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── legacy-image-viewer │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ └── unfold │ │ │ │ └── index.ts │ │ ├── live │ │ │ ├── badge-helper │ │ │ │ ├── BadgeHelper.vue │ │ │ │ ├── auto-match.ts │ │ │ │ ├── badge.ts │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ └── options.ts │ │ │ ├── badge-keepalive │ │ │ │ ├── BadgeKeepalive.vue │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ ├── chat-panel-fit │ │ │ │ ├── ChatPanelFitDragger.vue │ │ │ │ ├── chat-panel-fit.scss │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ └── options.ts │ │ │ ├── danmaku-sendbar │ │ │ │ ├── DanmakuSendbar.vue │ │ │ │ ├── index.ts │ │ │ │ └── original-elements.ts │ │ │ ├── gift-box │ │ │ │ ├── gift-box.scss │ │ │ │ └── index.ts │ │ │ ├── hide-gift-fullscreen │ │ │ │ ├── hide-full-screen-gift.css │ │ │ │ └── index.ts │ │ │ ├── hide-player-blur │ │ │ │ ├── hide-player-blur.scss │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── home-mute │ │ │ │ └── index.ts │ │ │ ├── liveroom-username-link │ │ │ │ └── index.ts │ │ │ ├── original │ │ │ │ ├── Widget.vue │ │ │ │ ├── get-original-liveroom-url.ts │ │ │ │ └── index.ts │ │ │ ├── remove-mask-panel │ │ │ │ └── index.ts │ │ │ ├── remove-watermark │ │ │ │ ├── index.ts │ │ │ │ └── remove-watermark.scss │ │ │ ├── showgirl │ │ │ │ └── index.ts │ │ │ └── side-bar │ │ │ │ ├── index.ts │ │ │ │ └── side-bar.scss │ │ ├── style │ │ │ ├── always-show-duration │ │ │ │ ├── always-show-duration.scss │ │ │ │ └── index.ts │ │ │ ├── auto-hide-sidebar │ │ │ │ ├── auto-hide-sidebar.scss │ │ │ │ └── index.ts │ │ │ ├── clear-home │ │ │ │ └── index.ts │ │ │ ├── custom-font-family │ │ │ │ ├── data.ts │ │ │ │ ├── disable-title-punctuation-text-indent.scss │ │ │ │ ├── extra-options │ │ │ │ │ ├── Entry.vue │ │ │ │ │ ├── ExtraOptionsPanel.vue │ │ │ │ │ ├── Panel.vue │ │ │ │ │ ├── SwitchOptionsMin.vue │ │ │ │ │ ├── extra-options-panel.scss │ │ │ │ │ ├── extra-options-panel.ts │ │ │ │ │ └── vm.ts │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ └── set-font-family.scss │ │ │ ├── custom-navbar │ │ │ │ ├── CustomNavbar.vue │ │ │ │ ├── CustomNavbarItem.vue │ │ │ │ ├── CustomNavbarLink.vue │ │ │ │ ├── _nav-link.scss │ │ │ │ ├── _popup.scss │ │ │ │ ├── _scroll-animation.scss │ │ │ │ ├── built-in-items.ts │ │ │ │ ├── custom-navbar-item.ts │ │ │ │ ├── entry.ts │ │ │ │ ├── favorites │ │ │ │ │ ├── FavoritesFolderSelect.vue │ │ │ │ │ ├── NavbarFavorites.vue │ │ │ │ │ ├── favorites-folder.ts │ │ │ │ │ └── favorites.ts │ │ │ │ ├── feeds │ │ │ │ │ ├── NavbarFeeds.vue │ │ │ │ │ ├── feeds.ts │ │ │ │ │ └── tabs │ │ │ │ │ │ ├── BangumiFeeds.vue │ │ │ │ │ │ ├── ColumnFeeds.vue │ │ │ │ │ │ ├── LiveFeeds.vue │ │ │ │ │ │ ├── VideoFeeds.vue │ │ │ │ │ │ ├── bangumi-mockup.ts │ │ │ │ │ │ ├── live-feed-item.ts │ │ │ │ │ │ ├── next-page.ts │ │ │ │ │ │ └── tabs.ts │ │ │ │ ├── flexible-blank │ │ │ │ │ └── flexible-blank.ts │ │ │ │ ├── games │ │ │ │ │ ├── GamesPopup.vue │ │ │ │ │ ├── games.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── hide-original.scss │ │ │ │ ├── history │ │ │ │ │ ├── NavbarHistory.vue │ │ │ │ │ ├── history.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── home │ │ │ │ │ ├── NavbarHome.vue │ │ │ │ │ └── home.ts │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ ├── link-popup-content-align-style.ts │ │ │ │ ├── logo │ │ │ │ │ ├── NavbarLogo.vue │ │ │ │ │ └── logo.ts │ │ │ │ ├── manga │ │ │ │ │ ├── MangaPopup.vue │ │ │ │ │ ├── manga.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── match │ │ │ │ │ ├── MatchPopup.vue │ │ │ │ │ ├── match.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── messages │ │ │ │ │ ├── NavbarMessages.vue │ │ │ │ │ └── messages.ts │ │ │ │ ├── mixins.ts │ │ │ │ ├── notify-style.ts │ │ │ │ ├── orders-migration.ts │ │ │ │ ├── ranking │ │ │ │ │ ├── NavbarRanking.vue │ │ │ │ │ └── ranking.ts │ │ │ │ ├── search │ │ │ │ │ ├── NavbarSearch.vue │ │ │ │ │ └── search.ts │ │ │ │ ├── settings │ │ │ │ │ ├── ExtraOptions.vue │ │ │ │ │ ├── NavbarSettings.vue │ │ │ │ │ ├── Widget.vue │ │ │ │ │ ├── orders.ts │ │ │ │ │ └── vm.ts │ │ │ │ ├── simple-links │ │ │ │ │ └── simple-links.ts │ │ │ │ ├── subscriptions │ │ │ │ │ ├── BangumiSubscriptions.vue │ │ │ │ │ ├── CinemaSubscriptions.vue │ │ │ │ │ ├── Content.vue │ │ │ │ │ ├── NavbarSubscriptions.vue │ │ │ │ │ ├── SubscriptionsList.vue │ │ │ │ │ ├── subscriptions.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── transparent-fill.ts │ │ │ │ ├── upload │ │ │ │ │ ├── NavbarUpload.vue │ │ │ │ │ ├── UploadPopup.vue │ │ │ │ │ └── upload.ts │ │ │ │ ├── urls.ts │ │ │ │ ├── user-info │ │ │ │ │ ├── UserFace.vue │ │ │ │ │ ├── UserInfoPopup.vue │ │ │ │ │ ├── akari.jpg │ │ │ │ │ └── user-info.ts │ │ │ │ └── watchlater │ │ │ │ │ ├── NavbarWatchlater.vue │ │ │ │ │ └── watchlater.ts │ │ │ ├── dark-mode │ │ │ │ ├── README.md │ │ │ │ ├── _dark-definitions.scss │ │ │ │ ├── dark-mode.important.scss │ │ │ │ ├── dark-mode.scss │ │ │ │ ├── dark-navbar.scss │ │ │ │ ├── dark-shadow-dom.scss │ │ │ │ ├── dark-slice-10.scss │ │ │ │ ├── dark-slice-11.scss │ │ │ │ ├── dark-slice-12.scss │ │ │ │ ├── dark-slice-13.scss │ │ │ │ ├── dark-slice-14.scss │ │ │ │ ├── dark-slice-15.scss │ │ │ │ ├── dark-slice-16.scss │ │ │ │ ├── dark-slice-17.scss │ │ │ │ ├── dark-slice-18.scss │ │ │ │ ├── dark-slice-19.scss │ │ │ │ ├── dark-slice-9.scss │ │ │ │ ├── dark-urls.ts │ │ │ │ ├── dark-variables.scss │ │ │ │ ├── follow-system │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── old │ │ │ │ │ ├── dark-slice-1.css │ │ │ │ │ ├── dark-slice-2.css │ │ │ │ │ ├── dark-slice-3.css │ │ │ │ │ ├── dark-slice-4.css │ │ │ │ │ ├── dark-slice-5.css │ │ │ │ │ ├── dark-slice-6.css │ │ │ │ │ ├── dark-slice-7.css │ │ │ │ │ └── dark-slice-8.css │ │ │ │ └── schedule │ │ │ │ │ └── index.ts │ │ │ ├── hide │ │ │ │ ├── bangumi │ │ │ │ │ ├── reviews │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── reviews.scss │ │ │ │ │ └── sponsors │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── sponsors.scss │ │ │ │ ├── banner │ │ │ │ │ ├── banner.scss │ │ │ │ │ └── index.ts │ │ │ │ ├── home-carousel │ │ │ │ │ ├── hide-home-carousel.scss │ │ │ │ │ ├── index.md │ │ │ │ │ └── index.ts │ │ │ │ ├── trending-search │ │ │ │ │ ├── hide-trending-search.scss │ │ │ │ │ ├── index.md │ │ │ │ │ └── index.ts │ │ │ │ ├── user-card │ │ │ │ │ ├── index.ts │ │ │ │ │ └── user-card.scss │ │ │ │ ├── user-pendent │ │ │ │ │ ├── index.md │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── user-pendent-shadow.scss │ │ │ │ │ └── user-pendent.scss │ │ │ │ └── video │ │ │ │ │ ├── notes │ │ │ │ │ ├── hide-video-notes.scss │ │ │ │ │ ├── index.md │ │ │ │ │ └── index.ts │ │ │ │ │ ├── recommended-live │ │ │ │ │ ├── index.ts │ │ │ │ │ └── recommended-live.scss │ │ │ │ │ ├── related-videos │ │ │ │ │ ├── index.md │ │ │ │ │ ├── index.ts │ │ │ │ │ └── related-videos.scss │ │ │ │ │ ├── report │ │ │ │ │ ├── hide-video-report.scss │ │ │ │ │ ├── index.md │ │ │ │ │ └── index.ts │ │ │ │ │ ├── share │ │ │ │ │ ├── hide-video-share.scss │ │ │ │ │ ├── index.md │ │ │ │ │ └── index.ts │ │ │ │ │ └── top-mask │ │ │ │ │ ├── index.ts │ │ │ │ │ └── top-mask.scss │ │ │ ├── home-redesign │ │ │ │ ├── HomeRedesignBase.vue │ │ │ │ ├── fresh │ │ │ │ │ ├── ExtraOptions.vue │ │ │ │ │ ├── FreshHome.vue │ │ │ │ │ ├── FreshLayoutItem.vue │ │ │ │ │ ├── SubHeader.vue │ │ │ │ │ ├── VideoCardWrapper.vue │ │ │ │ │ ├── VideoList.vue │ │ │ │ │ ├── index.md │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── init-dropdown-options │ │ │ │ │ │ └── area-primary-title-color.ts │ │ │ │ │ ├── layouts │ │ │ │ │ │ ├── areas │ │ │ │ │ │ │ ├── Areas.vue │ │ │ │ │ │ │ ├── areas.ts │ │ │ │ │ │ │ ├── black-room.svg │ │ │ │ │ │ │ ├── column.jpg │ │ │ │ │ │ │ ├── live.svg │ │ │ │ │ │ │ └── topic.svg │ │ │ │ │ │ ├── blackboard │ │ │ │ │ │ │ ├── Blackboard.vue │ │ │ │ │ │ │ ├── api.ts │ │ │ │ │ │ │ └── blackboard.ts │ │ │ │ │ │ ├── categories │ │ │ │ │ │ │ ├── Categories.vue │ │ │ │ │ │ │ ├── categories.ts │ │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ │ ├── Bangumi.vue │ │ │ │ │ │ │ │ ├── BangumiTimeline.vue │ │ │ │ │ │ │ │ ├── CompactRankList.vue │ │ │ │ │ │ │ │ ├── Default.vue │ │ │ │ │ │ │ │ ├── RankList.vue │ │ │ │ │ │ │ │ ├── VideoSlides.vue │ │ │ │ │ │ │ │ ├── _rank-list.scss │ │ │ │ │ │ │ │ ├── content.ts │ │ │ │ │ │ │ │ └── rank-list.ts │ │ │ │ │ │ │ ├── filter.ts │ │ │ │ │ │ │ └── supported-names.json │ │ │ │ │ │ ├── feeds │ │ │ │ │ │ │ ├── Feeds.vue │ │ │ │ │ │ │ └── feeds.ts │ │ │ │ │ │ ├── fresh-layout-item.ts │ │ │ │ │ │ ├── layouts.ts │ │ │ │ │ │ └── trending │ │ │ │ │ │ │ ├── Trending.vue │ │ │ │ │ │ │ └── trending.ts │ │ │ │ │ ├── options.ts │ │ │ │ │ ├── scroll-mask.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── hide-original.scss │ │ │ │ ├── minimal │ │ │ │ │ ├── MinimalHome.vue │ │ │ │ │ ├── MinimalHomeOperations.vue │ │ │ │ │ ├── index.md │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── options.ts │ │ │ │ │ ├── tabs │ │ │ │ │ │ ├── Feeds.vue │ │ │ │ │ │ └── Trending.vue │ │ │ │ │ └── types.ts │ │ │ │ ├── mixin.ts │ │ │ │ ├── trending.ts │ │ │ │ └── urls.ts │ │ │ ├── player-on-top-new │ │ │ │ └── index.ts │ │ │ ├── player-on-top │ │ │ │ ├── index.ts │ │ │ │ └── player-on-top.scss │ │ │ ├── player-shadow │ │ │ │ ├── index.ts │ │ │ │ └── player-shadow.scss │ │ │ ├── scrollbar │ │ │ │ ├── index.ts │ │ │ │ └── scrollbar.scss │ │ │ ├── sidebar-offset │ │ │ │ ├── index.ts │ │ │ │ └── sidebar-offset.scss │ │ │ ├── simplify │ │ │ │ ├── comments │ │ │ │ │ ├── comments-v2.scss │ │ │ │ │ ├── comments-v3-firefox │ │ │ │ │ │ ├── base.scss │ │ │ │ │ │ ├── decorate-and-time.scss │ │ │ │ │ │ ├── event-banner.scss │ │ │ │ │ │ ├── fans-medal.scss │ │ │ │ │ │ ├── reply-editor.scss │ │ │ │ │ │ ├── sub-reply-new-line.scss │ │ │ │ │ │ └── user-level.scss │ │ │ │ │ ├── comments-v3.scss │ │ │ │ │ ├── comments.scss │ │ │ │ │ ├── index.md │ │ │ │ │ └── index.ts │ │ │ │ └── live │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── live.scss │ │ │ │ │ └── skin.ts │ │ │ ├── special-danmaku │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ └── special-danmaku.scss │ │ │ └── v1-panel │ │ │ │ ├── index.ts │ │ │ │ └── v1-panel.scss │ │ ├── touch │ │ │ ├── combo-like │ │ │ │ └── index.ts │ │ │ ├── double-click-control │ │ │ │ ├── _default-state.scss │ │ │ │ ├── _fullscreen.scss │ │ │ │ ├── _hover-state.scss │ │ │ │ ├── _pbp.scss │ │ │ │ ├── _subtitle.scss │ │ │ │ ├── double-click-control.scss │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── mini-player │ │ │ │ ├── index.ts │ │ │ │ ├── live.ts │ │ │ │ ├── mini-player.scss │ │ │ │ ├── touch-move.ts │ │ │ │ └── video.ts │ │ │ ├── player-control │ │ │ │ ├── index.ts │ │ │ │ └── player-control.scss │ │ │ └── player-gestures │ │ │ │ ├── GesturePreview.vue │ │ │ │ ├── brightness.ts │ │ │ │ ├── desc.md │ │ │ │ ├── entry.ts │ │ │ │ ├── gesture-preview.ts │ │ │ │ ├── index.ts │ │ │ │ ├── progress.ts │ │ │ │ ├── swiper.ts │ │ │ │ ├── videoshot.ts │ │ │ │ └── volume.ts │ │ ├── utils │ │ │ ├── active-video-links │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── album-time-show │ │ │ │ ├── album-time.scss │ │ │ │ └── index.ts │ │ │ ├── auto-like │ │ │ │ ├── blackList.vue │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ ├── like.vue │ │ │ │ ├── settings.vue │ │ │ │ └── vm.ts │ │ │ ├── black-list │ │ │ │ ├── BlackListSettings.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ └── vm.ts │ │ │ ├── change-update-urls │ │ │ │ ├── Widget.vue │ │ │ │ └── index.ts │ │ │ ├── check-in-center │ │ │ │ ├── Widget.vue │ │ │ │ ├── check-in-item.ts │ │ │ │ └── index.ts │ │ │ ├── column-unlock │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── comments │ │ │ │ ├── content-replace │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── emoticon-to-emoticon.ts │ │ │ │ │ │ ├── emoticon-to-text.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── node-content-replacer.ts │ │ │ │ │ │ ├── recursive.ts │ │ │ │ │ │ ├── text-to-emoticon.ts │ │ │ │ │ │ ├── text-to-text.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── index.md │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── options.ts │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── ContentReplaceRow.vue │ │ │ │ │ │ ├── ExtraOptions.vue │ │ │ │ │ │ └── row.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── copy-link │ │ │ │ │ └── index.ts │ │ │ │ └── disable-search-link │ │ │ │ │ ├── disable-search-link-shadow.scss │ │ │ │ │ ├── disable-search-link.scss │ │ │ │ │ ├── index.md │ │ │ │ │ └── index.ts │ │ │ ├── dev-client │ │ │ │ ├── Action.vue │ │ │ │ ├── Widget.vue │ │ │ │ ├── client.ts │ │ │ │ ├── converter.ts │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ ├── options.ts │ │ │ │ ├── plugin.ts │ │ │ │ └── update-method.ts │ │ │ ├── download-audio │ │ │ │ ├── DownloadAudio.vue │ │ │ │ ├── audio-downloader.ts │ │ │ │ └── index.ts │ │ │ ├── download-emoticons │ │ │ │ ├── Widget.vue │ │ │ │ ├── emoticons.ts │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── image-exporter │ │ │ │ ├── Widget.vue │ │ │ │ ├── feed.ts │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── image-resolution │ │ │ │ ├── fix.scss │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ └── resolution.ts │ │ │ ├── import-series │ │ │ │ ├── index.ts │ │ │ │ └── logic.ts │ │ │ ├── ip-show │ │ │ │ └── index.ts │ │ │ ├── keymap │ │ │ │ ├── actions.ts │ │ │ │ ├── bindings.ts │ │ │ │ ├── help.md │ │ │ │ ├── index.ts │ │ │ │ ├── playback-tip.scss │ │ │ │ ├── presets.ts │ │ │ │ └── settings │ │ │ │ │ ├── ExtraOptions.vue │ │ │ │ │ ├── KeymapSettings.vue │ │ │ │ │ ├── KeymapSettingsRow.vue │ │ │ │ │ └── vm.ts │ │ │ ├── remove-promotions │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ └── remove-promotions.scss │ │ │ ├── subscribe-time-show │ │ │ │ ├── index.ts │ │ │ │ └── subscribe-time.scss │ │ │ ├── url-params-clean │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── v1-migrate │ │ │ │ ├── index.ts │ │ │ │ └── migrate.ts │ │ │ ├── view-cover │ │ │ │ ├── Plugin.vue │ │ │ │ ├── ViewCover.vue │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── watchlater-page-redirect │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ └── watchlater-redirect │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ └── video │ │ │ ├── auto-remove-watchlater │ │ │ ├── index.md │ │ │ └── index.ts │ │ │ ├── av-url │ │ │ └── index.ts │ │ │ ├── biliplus-redirect │ │ │ ├── BiliplusRedirect.vue │ │ │ └── index.ts │ │ │ ├── bvid-convert │ │ │ ├── BvidConvert.vue │ │ │ └── index.ts │ │ │ ├── danmaku │ │ │ ├── airborne │ │ │ │ ├── airborne.scss │ │ │ │ └── index.ts │ │ │ ├── converter │ │ │ │ ├── ass-danmaku.ts │ │ │ │ ├── danmaku-converter.md │ │ │ │ ├── danmaku-converter.ts │ │ │ │ ├── danmaku-data.ts │ │ │ │ ├── danmaku-segment.ts │ │ │ │ ├── danmaku-stack.ts │ │ │ │ ├── danmaku-type.ts │ │ │ │ └── xml-danmaku.ts │ │ │ ├── download │ │ │ │ ├── DownloadDanmaku.vue │ │ │ │ ├── Plugin.vue │ │ │ │ ├── danmaku.svg │ │ │ │ ├── index.ts │ │ │ │ ├── options.ts │ │ │ │ └── utils.ts │ │ │ ├── expand │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ └── unescape │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── default-location │ │ │ ├── Advanced.vue │ │ │ ├── ExtendBox.vue │ │ │ ├── Options.vue │ │ │ ├── PageTypeSelector.vue │ │ │ ├── _bar.scss │ │ │ ├── _form.scss │ │ │ ├── desc.md │ │ │ └── index.ts │ │ │ ├── download │ │ │ ├── DownloadVideo.vue │ │ │ ├── Widget.vue │ │ │ ├── apis │ │ │ │ ├── dash.ts │ │ │ │ ├── flv.ts │ │ │ │ └── url.ts │ │ │ ├── error.ts │ │ │ ├── index.md │ │ │ ├── index.ts │ │ │ ├── inputs │ │ │ │ ├── EpisodesPicker.vue │ │ │ │ ├── bangumi │ │ │ │ │ └── batch.ts │ │ │ │ ├── episode-item.ts │ │ │ │ └── video │ │ │ │ │ ├── SingleVideoInfo.vue │ │ │ │ │ ├── batch.ts │ │ │ │ │ └── input.ts │ │ │ ├── outputs │ │ │ │ └── stream-saver.ts │ │ │ └── types.ts │ │ │ ├── full-description │ │ │ ├── full-description.scss │ │ │ └── index.ts │ │ │ ├── full-episode-title │ │ │ ├── full-episode-title.scss │ │ │ ├── index.md │ │ │ └── index.ts │ │ │ ├── metadata │ │ │ ├── Plugin.vue │ │ │ ├── SaveMetadata.vue │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── options.ts │ │ │ ├── outer-watchlater │ │ │ ├── OuterWatchlater.vue │ │ │ ├── index.ts │ │ │ └── options.ts │ │ │ ├── player │ │ │ ├── auto-light │ │ │ │ ├── animation.ts │ │ │ │ └── index.ts │ │ │ ├── common │ │ │ │ ├── mini-rxjs │ │ │ │ │ ├── create.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── bufferSet.ts │ │ │ │ │ │ ├── combineLatest.ts │ │ │ │ │ │ ├── debounceTime.ts │ │ │ │ │ │ ├── distinctUntilChanged.ts │ │ │ │ │ │ ├── filter.ts │ │ │ │ │ │ ├── map.ts │ │ │ │ │ │ ├── observeOn.ts │ │ │ │ │ │ ├── pairwise.ts │ │ │ │ │ │ ├── startWith.ts │ │ │ │ │ │ ├── tap.ts │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── subject.ts │ │ │ │ │ ├── utils.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── firstValueFrom.ts │ │ │ │ │ │ └── loadStyle.ts │ │ │ │ ├── speed.ts │ │ │ │ └── speed │ │ │ │ │ ├── context.ts │ │ │ │ │ └── utils.ts │ │ │ ├── control-background │ │ │ │ ├── control-background.scss │ │ │ │ └── index.ts │ │ │ ├── default-mode │ │ │ │ └── index.ts │ │ │ ├── disable-double-click-fullscreen │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── disable-scroll-volume │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── extend-speed │ │ │ │ ├── component.ts │ │ │ │ └── index.ts │ │ │ ├── focus │ │ │ │ ├── desc.md │ │ │ │ └── index.ts │ │ │ ├── intersection-actions │ │ │ │ └── index.ts │ │ │ ├── invert-scroll-volume │ │ │ │ ├── index.md │ │ │ │ └── index.ts │ │ │ ├── legacy-auto-play │ │ │ │ └── index.ts │ │ │ ├── preserve-danmaku-input │ │ │ │ ├── danmaku-input.scss │ │ │ │ └── index.ts │ │ │ ├── remember-speed │ │ │ │ ├── component.ts │ │ │ │ └── index.ts │ │ │ ├── remove-popup │ │ │ │ ├── index.md │ │ │ │ ├── index.ts │ │ │ │ └── remove-popup.scss │ │ │ ├── screenshot │ │ │ │ ├── VideoScreenshot.vue │ │ │ │ ├── VideoScreenshotContainer.vue │ │ │ │ ├── desc.md │ │ │ │ ├── index.ts │ │ │ │ └── screenshot.ts │ │ │ ├── seek-by-frames │ │ │ │ ├── desc.md │ │ │ │ ├── index.ts │ │ │ │ ├── seek-left.svg │ │ │ │ └── seek-right.svg │ │ │ ├── show-cover │ │ │ │ ├── cover.scss │ │ │ │ └── index.ts │ │ │ ├── show-upload-time │ │ │ │ ├── defaultVideo.ts │ │ │ │ ├── desc.md │ │ │ │ ├── index.ts │ │ │ │ ├── mediaListVideo.ts │ │ │ │ ├── show-upload-time.scss │ │ │ │ └── video.ts │ │ │ └── skip-charge-list │ │ │ │ ├── charge-list.scss │ │ │ │ └── index.ts │ │ │ ├── quick-favorite │ │ │ ├── QuickFavorite.vue │ │ │ ├── _font.scss │ │ │ ├── index.ts │ │ │ └── options.ts │ │ │ ├── seo-redirect │ │ │ └── index.ts │ │ │ └── subtitle │ │ │ ├── download │ │ │ ├── DownloadSubtitle.vue │ │ │ ├── Plugin.vue │ │ │ ├── index.md │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ │ └── subtitle-converter.ts │ ├── deprecated │ │ ├── README.md │ │ ├── auto-continue │ │ │ └── index.ts │ │ ├── auto-draw │ │ │ └── index.ts │ │ ├── comments-translate │ │ │ └── index.ts │ │ ├── download-records │ │ │ ├── DownloadRecords.vue │ │ │ └── index.ts │ │ ├── feeds-translate │ │ │ └── index.ts │ │ ├── i18n │ │ │ ├── en-US │ │ │ │ ├── data.ts │ │ │ │ └── index.ts │ │ │ └── ja-JP │ │ │ │ ├── data.ts │ │ │ │ └── index.ts │ │ ├── live-default-quality │ │ │ └── index.ts │ │ ├── pip │ │ │ ├── LivePip.vue │ │ │ └── index.ts │ │ ├── record-danmaku │ │ │ ├── DanmakuRecorder.vue │ │ │ ├── RecordDanmaku.vue │ │ │ └── index.ts │ │ ├── restore-floors │ │ │ └── index.ts │ │ ├── simplify-home │ │ │ ├── home.scss │ │ │ └── index.ts │ │ ├── turn-off-danmaku │ │ │ └── index.ts │ │ └── video-default-quality │ │ │ └── index.ts │ ├── docs │ │ ├── components-doc.ts │ │ ├── index.ts │ │ ├── packages-doc.ts │ │ ├── packages │ │ │ ├── cleaner.ts │ │ │ ├── downloader.ts │ │ │ └── starter.ts │ │ ├── plugins-doc.ts │ │ └── third-party.ts │ ├── id.ts │ └── plugins │ │ ├── feeds │ │ └── filter │ │ │ ├── hide-charge-feeds │ │ │ ├── index.md │ │ │ └── index.ts │ │ │ └── hide-goods │ │ │ ├── index.md │ │ │ └── index.ts │ │ ├── launch-bar │ │ ├── audio-search │ │ │ ├── index.md │ │ │ └── index.ts │ │ ├── bangumi-search │ │ │ ├── index.md │ │ │ └── index.ts │ │ ├── common.ts │ │ ├── cv-search │ │ │ ├── index.md │ │ │ └── index.ts │ │ ├── number-search │ │ │ ├── index.md │ │ │ └── index.ts │ │ ├── trending-search │ │ │ └── index.ts │ │ └── uid-search │ │ │ ├── index.md │ │ │ └── index.ts │ │ ├── settings-panel │ │ └── recent-components │ │ │ └── index.ts │ │ ├── style │ │ ├── custom-navbar-channel │ │ │ ├── NavbarChannel.vue │ │ │ └── index.ts │ │ ├── custom-navbar-dark-mode │ │ │ ├── NavbarDarkMode.vue │ │ │ └── index.ts │ │ └── custom-navbar-pgc │ │ │ └── index.ts │ │ ├── utils │ │ ├── keymap-dark-mode │ │ │ └── index.ts │ │ ├── keymap-empty-action.ts │ │ │ └── index.ts │ │ ├── keymap-toggle-danmaku-list │ │ │ └── index.ts │ │ ├── keymap-toggle-player-light │ │ │ └── index.ts │ │ └── keymap-toggle-subtitle │ │ │ └── index.ts │ │ ├── v-loading │ │ └── reimu │ │ │ ├── ReimuLoading.vue │ │ │ ├── image.css │ │ │ └── index.ts │ │ └── video │ │ ├── download │ │ ├── aria2-output │ │ │ ├── RpcConfig.vue │ │ │ ├── aria2-input.ts │ │ │ ├── aria2-rpc.ts │ │ │ ├── index.ts │ │ │ └── rpc-profiles.ts │ │ ├── empty-output │ │ │ ├── index.md │ │ │ └── index.ts │ │ ├── idm-output │ │ │ └── index.ts │ │ ├── manual-input │ │ │ ├── ManualInput.vue │ │ │ └── index.ts │ │ ├── motrix-output │ │ │ └── index.ts │ │ ├── mpv-output-ex │ │ │ ├── Config.vue │ │ │ ├── handler.ts │ │ │ ├── index.ts │ │ │ └── type.d.ts │ │ ├── mpv-output-playlist │ │ │ ├── MpvConfig.vue │ │ │ ├── index.ts │ │ │ └── mpv-playlist.ts │ │ ├── mpv-output │ │ │ └── index.ts │ │ └── wasm-output │ │ │ ├── Config.vue │ │ │ ├── database.ts │ │ │ ├── ffmpeg.ts │ │ │ ├── handler.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ └── player │ │ └── speed │ │ └── index.ts ├── package.json ├── pnpm-lock.yaml ├── tsconfig.json └── webpack │ ├── all.ts │ ├── build.ts │ ├── components.ts │ ├── config.ts │ ├── docs.ts │ └── plugins.ts ├── src ├── client │ ├── bilibili-evolved.meta.json │ ├── bilibili-evolved.preview.meta.json │ ├── bilibili-evolved.ts │ ├── check-iframes.ts │ ├── common.meta.json │ ├── compatibility.ts │ ├── init-vue.ts │ └── init.ts ├── components │ ├── SwitchOptions.vue │ ├── api.ts │ ├── auto-update │ │ ├── ExtraOptions.vue │ │ ├── checker.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── bisector │ │ ├── DialogContent.vue │ │ ├── DialogTitle.vue │ │ ├── ResultToastContent.vue │ │ ├── api.ts │ │ ├── bisect.ts │ │ ├── index.ts │ │ └── options.ts │ ├── built-in-components.ts │ ├── compatibilities │ │ ├── index.md │ │ └── index.ts │ ├── component.ts │ ├── define.ts │ ├── description.ts │ ├── feeds │ │ ├── BangumiCard.vue │ │ ├── ColumnCard.vue │ │ ├── UpInfo.vue │ │ ├── VideoCard.vue │ │ ├── api │ │ │ ├── index.ts │ │ │ ├── manager │ │ │ │ ├── adaptor.ts │ │ │ │ ├── base.ts │ │ │ │ ├── index.ts │ │ │ │ ├── v1.ts │ │ │ │ └── v2.ts │ │ │ └── types.ts │ │ ├── bangumi-card.ts │ │ ├── column-card.ts │ │ ├── disable-profile-popup.ts │ │ ├── notify.ts │ │ └── video-card.ts │ ├── i18n │ │ ├── dom-translator.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── machine-translator │ │ │ ├── MachineTranslator.vue │ │ │ └── translators.ts │ │ └── types.ts │ ├── launch-bar │ │ ├── ActionItem.vue │ │ ├── GlobalLaunchBar.vue │ │ ├── LaunchBar.vue │ │ ├── focus-target.ts │ │ ├── history-provider.ts │ │ ├── index.ts │ │ ├── launch-bar-action.ts │ │ ├── plugin.ts │ │ ├── search-provider.ts │ │ └── toggle.ts │ ├── live │ │ ├── live-control-bar.ts │ │ └── live-socket.ts │ ├── notify-new-version │ │ ├── ReleaseContent.vue │ │ ├── index.ts │ │ └── release-content.ts │ ├── settings-panel │ │ ├── ComponentDescription.vue │ │ ├── ComponentDetail.vue │ │ ├── ComponentOption.vue │ │ ├── ComponentSettings.vue │ │ ├── ComponentTags.vue │ │ ├── SettingsContainer.vue │ │ ├── SettingsPanel.vue │ │ ├── TagRing.vue │ │ ├── WidgetsPanel.vue │ │ ├── component-actions │ │ │ ├── ComponentAction.vue │ │ │ └── component-actions.ts │ │ ├── dock.ts │ │ ├── dock │ │ │ ├── _center.scss │ │ │ ├── _left.scss │ │ │ └── _right.scss │ │ ├── dropdown.ts │ │ ├── external-actions.ts │ │ ├── index.en-US.md │ │ ├── index.en-US.ts │ │ ├── index.md │ │ ├── index.ts │ │ ├── mixins.ts │ │ ├── search-bar-actions.ts │ │ ├── sub-pages │ │ │ ├── AboutPage.vue │ │ │ ├── UserComponentsPage.vue │ │ │ ├── UserPluginsPage.vue │ │ │ ├── UserStylesPage.vue │ │ │ ├── about-page.ts │ │ │ ├── index.ts │ │ │ ├── manage-panel │ │ │ │ ├── ManageItem.vue │ │ │ │ ├── ManagePanel.vue │ │ │ │ ├── UserItem.vue │ │ │ │ └── manage-panel.ts │ │ │ └── online-registry │ │ │ │ ├── OnlineRegistry.vue │ │ │ │ ├── OnlineRegistryButton.vue │ │ │ │ ├── RegistryItem.vue │ │ │ │ ├── item-filter.ts │ │ │ │ ├── third-party.ts │ │ │ │ └── vm.ts │ │ └── tag-filter.ts │ ├── styled-component.ts │ ├── switch-options-old.ts │ ├── switch-options.ts │ ├── types.ts │ ├── user-component.ts │ ├── utils │ │ ├── categories │ │ │ ├── data.ts │ │ │ ├── icons.svg │ │ │ ├── raw.json │ │ │ ├── tid-v2.json │ │ │ └── updater.ts │ │ ├── comment-apis.ts │ │ └── comment │ │ │ ├── areas │ │ │ ├── base.ts │ │ │ ├── dom.ts │ │ │ ├── v1.ts │ │ │ ├── v2.ts │ │ │ └── v3.ts │ │ │ ├── comment-area-manager.ts │ │ │ ├── comment-area.ts │ │ │ ├── comment-item.ts │ │ │ ├── reply-item.ts │ │ │ ├── types.ts │ │ │ └── vnode-manager.ts │ ├── video │ │ ├── VideoControlBar.vue │ │ ├── ass-utils.ts │ │ ├── player-adaptor │ │ │ ├── bpx.ts │ │ │ ├── events.ts │ │ │ ├── index.ts │ │ │ ├── v2.ts │ │ │ ├── v3.ts │ │ │ └── v4.ts │ │ ├── player-agent │ │ │ ├── bangumi-player.ts │ │ │ ├── base.ts │ │ │ ├── bpx.ts │ │ │ ├── index.ts │ │ │ ├── live-player.ts │ │ │ ├── types.ts │ │ │ ├── video-player-v2.ts │ │ │ └── video-player.ts │ │ ├── player-light.ts │ │ ├── video-actions.ts │ │ ├── video-context-menu.ts │ │ ├── video-control-bar.ts │ │ ├── video-cover.ts │ │ ├── video-danmaku.ts │ │ ├── video-info.ts │ │ ├── video-quality.ts │ │ ├── watchlater.ts │ │ └── xml-utils.ts │ └── widget.ts ├── core │ ├── ajax.ts │ ├── cdn-types.ts │ ├── common-types.ts │ ├── container-query.ts │ ├── core-apis.ts │ ├── dialog │ │ ├── Dialog.vue │ │ └── index.ts │ ├── download-mode.ts │ ├── download.ts │ ├── external-input │ │ ├── index.ts │ │ └── load-feature-code.ts │ ├── file-picker.ts │ ├── horizontal-scroll.ts │ ├── install-feature.ts │ ├── life-cycle.ts │ ├── loading-mode.ts │ ├── local-storage.ts │ ├── meta.ts │ ├── observer.ts │ ├── performance │ │ ├── component-trace.ts │ │ ├── plugin-trace.ts │ │ ├── promise-trace.ts │ │ └── stats.ts │ ├── reorder.ts │ ├── runtime-library.ts │ ├── settings │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── internal-state.ts │ │ ├── listener.ts │ │ ├── proxy.ts │ │ ├── read.ts │ │ ├── types.ts │ │ └── write.ts │ ├── shadow-root │ │ ├── dom-entry.ts │ │ ├── dom-observer.ts │ │ ├── index.ts │ │ ├── root-observer.ts │ │ ├── styles.ts │ │ └── types.ts │ ├── spin-query.ts │ ├── style.ts │ ├── text-color.ts │ ├── theme-color │ │ ├── image-filter.ts │ │ ├── index.ts │ │ └── palette.json │ ├── toast │ │ ├── MiniToast.vue │ │ ├── ToastCard.vue │ │ ├── ToastCardContainer.vue │ │ ├── index.ts │ │ ├── mini.scss │ │ └── mini.ts │ ├── user-info.ts │ ├── utils │ │ ├── constants.ts │ │ ├── formatters.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ ├── lazy-panel.ts │ │ ├── log.ts │ │ ├── sort.ts │ │ ├── title.ts │ │ └── urls.ts │ └── version.ts ├── global.d.ts ├── plugins │ ├── api.ts │ ├── data.ts │ ├── hook.ts │ ├── id-search │ │ ├── index.ts │ │ └── types.ts │ ├── plugin.ts │ └── style.ts ├── shims.d.ts ├── third-party │ └── pako-inflate │ │ ├── index.d.ts │ │ └── index.js └── ui │ ├── AsyncButton.vue │ ├── CheckBox.vue │ ├── ColorPicker.vue │ ├── DefaultWidget.vue │ ├── DpiImage.vue │ ├── ImagePicker.vue │ ├── ImageViewer.vue │ ├── InfiniteScroll.vue │ ├── ProgressBar.vue │ ├── ProgressRing.vue │ ├── RadioButton.vue │ ├── RangeInput.vue │ ├── ScrollTrigger.vue │ ├── SwitchBox.vue │ ├── TabControl.vue │ ├── TextArea.vue │ ├── TextBox.vue │ ├── VButton.vue │ ├── VDropdown.vue │ ├── VEmpty.vue │ ├── VLoading.vue │ ├── VPopup.vue │ ├── VSlider.vue │ ├── _common.scss │ ├── _effects.scss │ ├── _markdown.scss │ ├── _tabs.scss │ ├── color-picker-wrapper.ts │ ├── icon │ ├── VIcon.vue │ ├── _bilifont.scss │ ├── _vanfont.scss │ ├── custom │ │ ├── biliplus.svg │ │ ├── lv6-plus.svg │ │ ├── settings-outline.svg │ │ └── widgets.svg │ └── index.ts │ ├── image-store.ts │ ├── image-viewer.ts │ ├── index.ts │ ├── mdi │ ├── index.ts │ ├── mdi.css │ └── mdi.woff2 │ ├── range.ts │ ├── tab-mapping.ts │ ├── text-control.ts │ ├── v-empty.ts │ └── v-loading.ts ├── tsconfig.json ├── tsconfig.type-check.json └── webpack ├── cdn ├── github.ts ├── index.ts ├── jsdelivr.ts └── types.ts ├── compilation-info ├── git.ts ├── index.ts ├── runtime.ts └── source-diff.ts ├── inject-metadata ├── core-info.ts ├── description.ts ├── i18n.ts ├── index.ts └── types.ts ├── loaders ├── style-loaders.ts └── ts-loader.ts ├── webpack.config.ts ├── webpack.dev.ts └── webpack.prod.ts /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github-json/README.md: -------------------------------------------------------------------------------- 1 | # Fuck YAML 2 | 3 | 在项目根目录使用 `pnpm build-github-config` 来生成 GitHub 相关配置. 4 | -------------------------------------------------------------------------------- /.github-json/data/DISCUSSION_TEMPLATE/功能建议-ideas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github-json/data/DISCUSSION_TEMPLATE/功能建议-ideas.json -------------------------------------------------------------------------------- /.github-json/data/FUNDING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github-json/data/FUNDING.json -------------------------------------------------------------------------------- /.github-json/data/ISSUE_TEMPLATE/bug_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github-json/data/ISSUE_TEMPLATE/bug_report.json -------------------------------------------------------------------------------- /.github-json/data/ISSUE_TEMPLATE/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github-json/data/ISSUE_TEMPLATE/config.json -------------------------------------------------------------------------------- /.github-json/data/workflows/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github-json/data/workflows/build.json -------------------------------------------------------------------------------- /.github-json/data/workflows/pull-request-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github-json/data/workflows/pull-request-check.json -------------------------------------------------------------------------------- /.github-json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github-json/index.ts -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/功能建议-ideas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github/DISCUSSION_TEMPLATE/功能建议-ideas.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.github/workflows/pull-request-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/dynamic-import.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.vscode/dynamic-import.code-snippets -------------------------------------------------------------------------------- /.vscode/html-in-js.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.vscode/html-in-js.code-snippets -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscode/ui-import.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.vscode/ui-import.code-snippets -------------------------------------------------------------------------------- /.vscode/vue-import.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/.vscode/vue-import.code-snippets -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/README.md -------------------------------------------------------------------------------- /bilibili-evolved.offline.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/bilibili-evolved.offline.user.js -------------------------------------------------------------------------------- /dev-tools/dev-server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/config.ts -------------------------------------------------------------------------------- /dev-tools/dev-server/core-watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/core-watcher.ts -------------------------------------------------------------------------------- /dev-tools/dev-server/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/design.md -------------------------------------------------------------------------------- /dev-tools/dev-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/index.ts -------------------------------------------------------------------------------- /dev-tools/dev-server/payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/payload.ts -------------------------------------------------------------------------------- /dev-tools/dev-server/registry-watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/registry-watcher.ts -------------------------------------------------------------------------------- /dev-tools/dev-server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/server.ts -------------------------------------------------------------------------------- /dev-tools/dev-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/tsconfig.json -------------------------------------------------------------------------------- /dev-tools/dev-server/watcher-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/watcher-common.ts -------------------------------------------------------------------------------- /dev-tools/dev-server/web-socket-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/dev-server/web-socket-server.ts -------------------------------------------------------------------------------- /dev-tools/donate-table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/donate-table/index.ts -------------------------------------------------------------------------------- /dev-tools/donate-table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/donate-table/package.json -------------------------------------------------------------------------------- /dev-tools/donate-table/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/donate-table/pnpm-lock.yaml -------------------------------------------------------------------------------- /dev-tools/donate-table/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dev-tools/donate-table/tsconfig.json -------------------------------------------------------------------------------- /dist/bilibili-evolved.preview.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dist/bilibili-evolved.preview.user.js -------------------------------------------------------------------------------- /dist/bilibili-evolved.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/dist/bilibili-evolved.user.js -------------------------------------------------------------------------------- /doc/aria2-notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/aria2-notice.md -------------------------------------------------------------------------------- /doc/cdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/cdn.md -------------------------------------------------------------------------------- /doc/donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/donate.md -------------------------------------------------------------------------------- /doc/features/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/features/features.json -------------------------------------------------------------------------------- /doc/features/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/features/features.md -------------------------------------------------------------------------------- /doc/features/pack/pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/features/pack/pack.json -------------------------------------------------------------------------------- /doc/features/pack/pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/features/pack/pack.md -------------------------------------------------------------------------------- /doc/issue-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/issue-rules.md -------------------------------------------------------------------------------- /doc/release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/release-checklist.md -------------------------------------------------------------------------------- /doc/rollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/rollback.md -------------------------------------------------------------------------------- /doc/v1-migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/doc/v1-migrate.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/static/mdi/mdi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/docs/static/mdi/mdi.css -------------------------------------------------------------------------------- /docs/static/mdi/mdi.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/docs/static/mdi/mdi.woff2 -------------------------------------------------------------------------------- /images/bilibili-evolved-wide-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/bilibili-evolved-wide-color.svg -------------------------------------------------------------------------------- /images/bilibili-evolved-wide-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/bilibili-evolved-wide-dark.svg -------------------------------------------------------------------------------- /images/bilibili-evolved-wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/bilibili-evolved-wide.svg -------------------------------------------------------------------------------- /images/compressed/afdian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/compressed/afdian.jpg -------------------------------------------------------------------------------- /images/compressed/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/compressed/wechat.jpg -------------------------------------------------------------------------------- /images/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/logo-small.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/v2/about-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/v2/about-panel.jpg -------------------------------------------------------------------------------- /images/v2/manage-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/v2/manage-panel.jpg -------------------------------------------------------------------------------- /images/v2/settings-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/v2/settings-panel.jpg -------------------------------------------------------------------------------- /images/v2/side-panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/images/v2/side-panel.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /registry/dist/components/feeds/copy-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/copy-link.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/del-feeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/del-feeds.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/disable-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/disable-details.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/extend-live.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/extend-live.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/filter.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/fixed-sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/fixed-sidebars.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/fold-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/fold-comments.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/full-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/full-content.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/full-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/full-title.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/group-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/group-filter.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/hide-comment-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/hide-comment-preview.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/image-auto-back-to-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/image-auto-back-to-top.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/legacy-image-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/legacy-image-viewer.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/translate.js -------------------------------------------------------------------------------- /registry/dist/components/feeds/unfold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/feeds/unfold.js -------------------------------------------------------------------------------- /registry/dist/components/live/badge-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/badge-helper.js -------------------------------------------------------------------------------- /registry/dist/components/live/badge-keepalive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/badge-keepalive.js -------------------------------------------------------------------------------- /registry/dist/components/live/chat-panel-fit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/chat-panel-fit.js -------------------------------------------------------------------------------- /registry/dist/components/live/danmaku-sendbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/danmaku-sendbar.js -------------------------------------------------------------------------------- /registry/dist/components/live/download-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/download-records.js -------------------------------------------------------------------------------- /registry/dist/components/live/gift-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/gift-box.js -------------------------------------------------------------------------------- /registry/dist/components/live/hide-gift-fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/hide-gift-fullscreen.js -------------------------------------------------------------------------------- /registry/dist/components/live/hide-player-blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/hide-player-blur.js -------------------------------------------------------------------------------- /registry/dist/components/live/home-mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/home-mute.js -------------------------------------------------------------------------------- /registry/dist/components/live/liveroom-username-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/liveroom-username-link.js -------------------------------------------------------------------------------- /registry/dist/components/live/original.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/original.js -------------------------------------------------------------------------------- /registry/dist/components/live/remove-mask-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/remove-mask-panel.js -------------------------------------------------------------------------------- /registry/dist/components/live/remove-watermark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/remove-watermark.js -------------------------------------------------------------------------------- /registry/dist/components/live/showgirl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/showgirl.js -------------------------------------------------------------------------------- /registry/dist/components/live/side-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/live/side-bar.js -------------------------------------------------------------------------------- /registry/dist/components/style/always-show-duration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/always-show-duration.js -------------------------------------------------------------------------------- /registry/dist/components/style/auto-hide-sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/auto-hide-sidebar.js -------------------------------------------------------------------------------- /registry/dist/components/style/clear-home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/clear-home.js -------------------------------------------------------------------------------- /registry/dist/components/style/custom-font-family.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/custom-font-family.js -------------------------------------------------------------------------------- /registry/dist/components/style/custom-navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/custom-navbar.js -------------------------------------------------------------------------------- /registry/dist/components/style/dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/dark-mode.js -------------------------------------------------------------------------------- /registry/dist/components/style/dark-mode/follow-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/dark-mode/follow-system.js -------------------------------------------------------------------------------- /registry/dist/components/style/dark-mode/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/dark-mode/schedule.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/bangumi/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/bangumi/reviews.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/bangumi/sponsors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/bangumi/sponsors.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/banner.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/home-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/home-carousel.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/trending-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/trending-search.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/user-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/user-card.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/user-pendent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/user-pendent.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/video/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/video/notes.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/video/related-videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/video/related-videos.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/video/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/video/report.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/video/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/video/share.js -------------------------------------------------------------------------------- /registry/dist/components/style/hide/video/top-mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/hide/video/top-mask.js -------------------------------------------------------------------------------- /registry/dist/components/style/home-redesign/fresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/home-redesign/fresh.js -------------------------------------------------------------------------------- /registry/dist/components/style/home-redesign/minimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/home-redesign/minimal.js -------------------------------------------------------------------------------- /registry/dist/components/style/player-on-top-new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/player-on-top-new.js -------------------------------------------------------------------------------- /registry/dist/components/style/player-on-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/player-on-top.js -------------------------------------------------------------------------------- /registry/dist/components/style/player-shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/player-shadow.js -------------------------------------------------------------------------------- /registry/dist/components/style/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/scrollbar.js -------------------------------------------------------------------------------- /registry/dist/components/style/sidebar-offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/sidebar-offset.js -------------------------------------------------------------------------------- /registry/dist/components/style/simplify/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/simplify/comments.js -------------------------------------------------------------------------------- /registry/dist/components/style/simplify/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/simplify/home.js -------------------------------------------------------------------------------- /registry/dist/components/style/simplify/live.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/simplify/live.js -------------------------------------------------------------------------------- /registry/dist/components/style/special-danmaku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/special-danmaku.js -------------------------------------------------------------------------------- /registry/dist/components/style/v1-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/style/v1-panel.js -------------------------------------------------------------------------------- /registry/dist/components/touch/combo-like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/touch/combo-like.js -------------------------------------------------------------------------------- /registry/dist/components/touch/double-click-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/touch/double-click-control.js -------------------------------------------------------------------------------- /registry/dist/components/touch/mini-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/touch/mini-player.js -------------------------------------------------------------------------------- /registry/dist/components/touch/player-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/touch/player-control.js -------------------------------------------------------------------------------- /registry/dist/components/touch/player-gestures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/touch/player-gestures.js -------------------------------------------------------------------------------- /registry/dist/components/utils/active-video-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/active-video-links.js -------------------------------------------------------------------------------- /registry/dist/components/utils/album-time-show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/album-time-show.js -------------------------------------------------------------------------------- /registry/dist/components/utils/auto-like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/auto-like.js -------------------------------------------------------------------------------- /registry/dist/components/utils/black-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/black-list.js -------------------------------------------------------------------------------- /registry/dist/components/utils/change-update-urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/change-update-urls.js -------------------------------------------------------------------------------- /registry/dist/components/utils/check-in-center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/check-in-center.js -------------------------------------------------------------------------------- /registry/dist/components/utils/column-unlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/column-unlock.js -------------------------------------------------------------------------------- /registry/dist/components/utils/comments/content-replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/comments/content-replace.js -------------------------------------------------------------------------------- /registry/dist/components/utils/comments/copy-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/comments/copy-link.js -------------------------------------------------------------------------------- /registry/dist/components/utils/comments/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/comments/translate.js -------------------------------------------------------------------------------- /registry/dist/components/utils/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/dev-client.js -------------------------------------------------------------------------------- /registry/dist/components/utils/download-audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/download-audio.js -------------------------------------------------------------------------------- /registry/dist/components/utils/download-emoticons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/download-emoticons.js -------------------------------------------------------------------------------- /registry/dist/components/utils/image-exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/image-exporter.js -------------------------------------------------------------------------------- /registry/dist/components/utils/image-resolution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/image-resolution.js -------------------------------------------------------------------------------- /registry/dist/components/utils/import-series.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/import-series.js -------------------------------------------------------------------------------- /registry/dist/components/utils/ip-show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/ip-show.js -------------------------------------------------------------------------------- /registry/dist/components/utils/keymap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/keymap.js -------------------------------------------------------------------------------- /registry/dist/components/utils/remove-promotions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/remove-promotions.js -------------------------------------------------------------------------------- /registry/dist/components/utils/subscribe-time-show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/subscribe-time-show.js -------------------------------------------------------------------------------- /registry/dist/components/utils/url-params-clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/url-params-clean.js -------------------------------------------------------------------------------- /registry/dist/components/utils/v1-migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/v1-migrate.js -------------------------------------------------------------------------------- /registry/dist/components/utils/view-cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/view-cover.js -------------------------------------------------------------------------------- /registry/dist/components/utils/watchlater-page-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/watchlater-page-redirect.js -------------------------------------------------------------------------------- /registry/dist/components/utils/watchlater-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/utils/watchlater-redirect.js -------------------------------------------------------------------------------- /registry/dist/components/video/auto-remove-watchlater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/auto-remove-watchlater.js -------------------------------------------------------------------------------- /registry/dist/components/video/av-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/av-url.js -------------------------------------------------------------------------------- /registry/dist/components/video/biliplus-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/biliplus-redirect.js -------------------------------------------------------------------------------- /registry/dist/components/video/bvid-convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/bvid-convert.js -------------------------------------------------------------------------------- /registry/dist/components/video/danmaku/airborne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/danmaku/airborne.js -------------------------------------------------------------------------------- /registry/dist/components/video/danmaku/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/danmaku/download.js -------------------------------------------------------------------------------- /registry/dist/components/video/danmaku/expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/danmaku/expand.js -------------------------------------------------------------------------------- /registry/dist/components/video/danmaku/unescape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/danmaku/unescape.js -------------------------------------------------------------------------------- /registry/dist/components/video/default-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/default-location.js -------------------------------------------------------------------------------- /registry/dist/components/video/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/download.js -------------------------------------------------------------------------------- /registry/dist/components/video/full-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/full-description.js -------------------------------------------------------------------------------- /registry/dist/components/video/full-episode-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/full-episode-title.js -------------------------------------------------------------------------------- /registry/dist/components/video/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/metadata.js -------------------------------------------------------------------------------- /registry/dist/components/video/outer-watchlater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/outer-watchlater.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/auto-light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/auto-light.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/common/mini-rxjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/common/mini-rxjs.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/control-background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/control-background.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/default-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/default-mode.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/extend-speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/extend-speed.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/focus.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/legacy-auto-play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/legacy-auto-play.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/remember-speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/remember-speed.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/remove-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/remove-popup.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/screenshot.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/seek-by-frames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/seek-by-frames.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/show-cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/show-cover.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/show-upload-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/show-upload-time.js -------------------------------------------------------------------------------- /registry/dist/components/video/player/skip-charge-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/player/skip-charge-list.js -------------------------------------------------------------------------------- /registry/dist/components/video/quick-favorite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/quick-favorite.js -------------------------------------------------------------------------------- /registry/dist/components/video/seo-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/seo-redirect.js -------------------------------------------------------------------------------- /registry/dist/components/video/subtitle/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/components/video/subtitle/download.js -------------------------------------------------------------------------------- /registry/dist/plugins/feeds/filter/hide-charge-feeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/feeds/filter/hide-charge-feeds.js -------------------------------------------------------------------------------- /registry/dist/plugins/feeds/filter/hide-goods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/feeds/filter/hide-goods.js -------------------------------------------------------------------------------- /registry/dist/plugins/i18n/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/i18n/en-US.js -------------------------------------------------------------------------------- /registry/dist/plugins/i18n/ja-JP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/i18n/ja-JP.js -------------------------------------------------------------------------------- /registry/dist/plugins/launch-bar/audio-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/launch-bar/audio-search.js -------------------------------------------------------------------------------- /registry/dist/plugins/launch-bar/bangumi-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/launch-bar/bangumi-search.js -------------------------------------------------------------------------------- /registry/dist/plugins/launch-bar/cv-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/launch-bar/cv-search.js -------------------------------------------------------------------------------- /registry/dist/plugins/launch-bar/number-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/launch-bar/number-search.js -------------------------------------------------------------------------------- /registry/dist/plugins/launch-bar/trending-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/launch-bar/trending-search.js -------------------------------------------------------------------------------- /registry/dist/plugins/launch-bar/uid-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/launch-bar/uid-search.js -------------------------------------------------------------------------------- /registry/dist/plugins/settings-panel/recent-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/settings-panel/recent-components.js -------------------------------------------------------------------------------- /registry/dist/plugins/style/custom-navbar-channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/style/custom-navbar-channel.js -------------------------------------------------------------------------------- /registry/dist/plugins/style/custom-navbar-dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/style/custom-navbar-dark-mode.js -------------------------------------------------------------------------------- /registry/dist/plugins/style/custom-navbar-pgc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/style/custom-navbar-pgc.js -------------------------------------------------------------------------------- /registry/dist/plugins/utils/keymap-dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/utils/keymap-dark-mode.js -------------------------------------------------------------------------------- /registry/dist/plugins/utils/keymap-empty-action.ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/utils/keymap-empty-action.ts.js -------------------------------------------------------------------------------- /registry/dist/plugins/utils/keymap-toggle-danmaku-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/utils/keymap-toggle-danmaku-list.js -------------------------------------------------------------------------------- /registry/dist/plugins/utils/keymap-toggle-player-light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/utils/keymap-toggle-player-light.js -------------------------------------------------------------------------------- /registry/dist/plugins/utils/keymap-toggle-subtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/utils/keymap-toggle-subtitle.js -------------------------------------------------------------------------------- /registry/dist/plugins/v-loading/reimu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/v-loading/reimu.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/aria2-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/aria2-output.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/empty-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/empty-output.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/idm-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/idm-output.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/manual-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/manual-input.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/motrix-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/motrix-output.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/mpv-output-ex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/mpv-output-ex.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/mpv-output-playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/mpv-output-playlist.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/mpv-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/mpv-output.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/download/wasm-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/download/wasm-output.js -------------------------------------------------------------------------------- /registry/dist/plugins/video/player/speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/dist/plugins/video/player/speed.js -------------------------------------------------------------------------------- /registry/lib/components/feeds/_feeds-panel-shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/_feeds-panel-shared.scss -------------------------------------------------------------------------------- /registry/lib/components/feeds/copy-link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/copy-link/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/del-feeds/Widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/del-feeds/Widget.vue -------------------------------------------------------------------------------- /registry/lib/components/feeds/del-feeds/check-in-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/del-feeds/check-in-item.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/del-feeds/index.md: -------------------------------------------------------------------------------- 1 | 删除动态, 可选转发抽奖, 和全部删除. 2 | -------------------------------------------------------------------------------- /registry/lib/components/feeds/del-feeds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/del-feeds/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/disable-details/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/disable-details/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/disable-details/init.scss: -------------------------------------------------------------------------------- 1 | .card[data-did] .content .details { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /registry/lib/components/feeds/extend-live/ExtraOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/extend-live/ExtraOptions.vue -------------------------------------------------------------------------------- /registry/lib/components/feeds/extend-live/LiveList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/extend-live/LiveList.vue -------------------------------------------------------------------------------- /registry/lib/components/feeds/extend-live/index.md: -------------------------------------------------------------------------------- 1 | 替换动态的 `正在直播` 面板, 能够显示超过 10 个的直播间. 2 | -------------------------------------------------------------------------------- /registry/lib/components/feeds/extend-live/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/extend-live/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/extend-live/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/extend-live/options.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/extend-live/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/extend-live/types.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/FeedsFilterCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/FeedsFilterCard.vue -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/FilterTypeSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/FilterTypeSwitch.vue -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/_blocker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/_blocker.scss -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/feeds-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/feeds-filter.md -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/index.md -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/options.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/pattern.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/filter/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/filter/plugin.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/fixed-sidebars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/fixed-sidebars/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/fold-comments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/fold-comments/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/full-content/index.md: -------------------------------------------------------------------------------- 1 | 不管内容多长, 总是完全展开动态的内容. (专栏不算) 2 | -------------------------------------------------------------------------------- /registry/lib/components/feeds/full-content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/full-content/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/full-title/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/full-title/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/group-filter/FilterPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/group-filter/FilterPanel.vue -------------------------------------------------------------------------------- /registry/lib/components/feeds/group-filter/index.md: -------------------------------------------------------------------------------- 1 | 按照关注分组筛选动态 2 | -------------------------------------------------------------------------------- /registry/lib/components/feeds/group-filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/group-filter/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/hide-comment-preview/hide-comment-preview.scss: -------------------------------------------------------------------------------- 1 | .bili-dyn-item__interaction { 2 | display: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /registry/lib/components/feeds/hide-comment-preview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/hide-comment-preview/index.md -------------------------------------------------------------------------------- /registry/lib/components/feeds/hide-comment-preview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/hide-comment-preview/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/legacy-image-viewer/index.md: -------------------------------------------------------------------------------- 1 | 将动态中左右切换式的图片改回传统的平铺展示. (在动态详情中可能稍有延迟) 2 | -------------------------------------------------------------------------------- /registry/lib/components/feeds/legacy-image-viewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/legacy-image-viewer/index.ts -------------------------------------------------------------------------------- /registry/lib/components/feeds/unfold/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/feeds/unfold/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/badge-helper/BadgeHelper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/badge-helper/BadgeHelper.vue -------------------------------------------------------------------------------- /registry/lib/components/live/badge-helper/auto-match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/badge-helper/auto-match.ts -------------------------------------------------------------------------------- /registry/lib/components/live/badge-helper/badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/badge-helper/badge.ts -------------------------------------------------------------------------------- /registry/lib/components/live/badge-helper/index.md: -------------------------------------------------------------------------------- 1 | 在直播区中, 可从功能面板中直接切换勋章和头衔. 默认显示 256 个 (同时也是上限), 可在选项中修改. 2 | -------------------------------------------------------------------------------- /registry/lib/components/live/badge-helper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/badge-helper/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/badge-helper/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/badge-helper/options.ts -------------------------------------------------------------------------------- /registry/lib/components/live/badge-keepalive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/badge-keepalive/index.md -------------------------------------------------------------------------------- /registry/lib/components/live/badge-keepalive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/badge-keepalive/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/badge-keepalive/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/badge-keepalive/utils.ts -------------------------------------------------------------------------------- /registry/lib/components/live/chat-panel-fit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/chat-panel-fit/index.md -------------------------------------------------------------------------------- /registry/lib/components/live/chat-panel-fit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/chat-panel-fit/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/chat-panel-fit/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/chat-panel-fit/options.ts -------------------------------------------------------------------------------- /registry/lib/components/live/danmaku-sendbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/danmaku-sendbar/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/gift-box/gift-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/gift-box/gift-box.scss -------------------------------------------------------------------------------- /registry/lib/components/live/gift-box/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/gift-box/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/hide-gift-fullscreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/hide-gift-fullscreen/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/hide-player-blur/hide-player-blur.scss: -------------------------------------------------------------------------------- 1 | #web-player-module-area-mask-panel { 2 | z-index: -100 !important; 3 | } 4 | -------------------------------------------------------------------------------- /registry/lib/components/live/hide-player-blur/index.md: -------------------------------------------------------------------------------- 1 | 移除直播画面中的马赛克区域. 2 | -------------------------------------------------------------------------------- /registry/lib/components/live/hide-player-blur/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/hide-player-blur/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/home-mute/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/home-mute/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/original/Widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/original/Widget.vue -------------------------------------------------------------------------------- /registry/lib/components/live/original/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/original/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/remove-mask-panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/remove-mask-panel/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/remove-watermark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/remove-watermark/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/showgirl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/showgirl/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/side-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/side-bar/index.ts -------------------------------------------------------------------------------- /registry/lib/components/live/side-bar/side-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/live/side-bar/side-bar.scss -------------------------------------------------------------------------------- /registry/lib/components/style/always-show-duration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/always-show-duration/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/auto-hide-sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/auto-hide-sidebar/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/clear-home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/clear-home/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-font-family/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-font-family/data.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-font-family/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-font-family/index.md -------------------------------------------------------------------------------- /registry/lib/components/style/custom-font-family/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-font-family/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/_nav-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/_nav-link.scss -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/_popup.scss -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/entry.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/feeds/feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/feeds/feeds.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/games/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/games/games.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/home/home.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/index.md -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/logo/logo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/logo/logo.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/mixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/mixins.ts -------------------------------------------------------------------------------- /registry/lib/components/style/custom-navbar/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/custom-navbar/urls.ts -------------------------------------------------------------------------------- /registry/lib/components/style/dark-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/dark-mode/README.md -------------------------------------------------------------------------------- /registry/lib/components/style/dark-mode/dark-mode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/dark-mode/dark-mode.scss -------------------------------------------------------------------------------- /registry/lib/components/style/dark-mode/dark-navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/dark-mode/dark-navbar.scss -------------------------------------------------------------------------------- /registry/lib/components/style/dark-mode/dark-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/dark-mode/dark-urls.ts -------------------------------------------------------------------------------- /registry/lib/components/style/dark-mode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/dark-mode/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/hide/bangumi/reviews/reviews.scss: -------------------------------------------------------------------------------- 1 | #review_module { 2 | display: none !important; 3 | } -------------------------------------------------------------------------------- /registry/lib/components/style/hide/banner/banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/hide/banner/banner.scss -------------------------------------------------------------------------------- /registry/lib/components/style/hide/banner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/hide/banner/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/hide/user-card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/hide/user-card/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/hide/user-pendent/index.md: -------------------------------------------------------------------------------- 1 | 隐藏页面中用户的头像框 (包括角标), 目前支持动态和视频页面. 2 | -------------------------------------------------------------------------------- /registry/lib/components/style/hide/user-pendent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/hide/user-pendent/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/hide/video/notes/index.md: -------------------------------------------------------------------------------- 1 | 隐藏视频页面中的 "记笔记" 按钮. 2 | -------------------------------------------------------------------------------- /registry/lib/components/style/hide/video/notes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/hide/video/notes/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/hide/video/report/index.md: -------------------------------------------------------------------------------- 1 | 隐藏视频页面中的 "稿件投诉" 按钮. 2 | -------------------------------------------------------------------------------- /registry/lib/components/style/hide/video/report/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/hide/video/report/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/hide/video/share/index.md: -------------------------------------------------------------------------------- 1 | 隐藏视频和番剧播放器下方的分享按钮. 2 | -------------------------------------------------------------------------------- /registry/lib/components/style/hide/video/share/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/hide/video/share/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/home-redesign/mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/home-redesign/mixin.ts -------------------------------------------------------------------------------- /registry/lib/components/style/home-redesign/trending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/home-redesign/trending.ts -------------------------------------------------------------------------------- /registry/lib/components/style/home-redesign/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/home-redesign/urls.ts -------------------------------------------------------------------------------- /registry/lib/components/style/player-on-top-new/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/player-on-top-new/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/player-on-top/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/player-on-top/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/player-shadow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/player-shadow/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/scrollbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/scrollbar/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/scrollbar/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/scrollbar/scrollbar.scss -------------------------------------------------------------------------------- /registry/lib/components/style/sidebar-offset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/sidebar-offset/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/simplify/comments/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/simplify/comments/index.md -------------------------------------------------------------------------------- /registry/lib/components/style/simplify/comments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/simplify/comments/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/simplify/live/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/simplify/live/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/simplify/live/live.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/simplify/live/live.scss -------------------------------------------------------------------------------- /registry/lib/components/style/simplify/live/skin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/simplify/live/skin.ts -------------------------------------------------------------------------------- /registry/lib/components/style/special-danmaku/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/special-danmaku/index.md -------------------------------------------------------------------------------- /registry/lib/components/style/special-danmaku/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/special-danmaku/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/v1-panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/v1-panel/index.ts -------------------------------------------------------------------------------- /registry/lib/components/style/v1-panel/v1-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/style/v1-panel/v1-panel.scss -------------------------------------------------------------------------------- /registry/lib/components/touch/combo-like/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/combo-like/index.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/double-click-control/index.md: -------------------------------------------------------------------------------- 1 | 将视频播放器的操作方式更改为: 单击显示 / 隐藏控制栏, 双击播放 / 暂停. 2 | -------------------------------------------------------------------------------- /registry/lib/components/touch/mini-player/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/mini-player/index.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/mini-player/live.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/mini-player/live.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/mini-player/touch-move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/mini-player/touch-move.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/mini-player/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/mini-player/video.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/player-control/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/player-control/index.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/player-gestures/desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/player-gestures/desc.md -------------------------------------------------------------------------------- /registry/lib/components/touch/player-gestures/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/player-gestures/entry.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/player-gestures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/player-gestures/index.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/player-gestures/swiper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/player-gestures/swiper.ts -------------------------------------------------------------------------------- /registry/lib/components/touch/player-gestures/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/touch/player-gestures/volume.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/album-time-show/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/album-time-show/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/auto-like/blackList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/auto-like/blackList.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/auto-like/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/auto-like/index.md -------------------------------------------------------------------------------- /registry/lib/components/utils/auto-like/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/auto-like/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/auto-like/like.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/auto-like/like.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/auto-like/settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/auto-like/settings.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/auto-like/vm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/auto-like/vm.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/black-list/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/black-list/Settings.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/black-list/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/black-list/common.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/black-list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/black-list/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/black-list/vm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/black-list/vm.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/check-in-center/Widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/check-in-center/Widget.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/check-in-center/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/check-in-center/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/column-unlock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/column-unlock/index.md -------------------------------------------------------------------------------- /registry/lib/components/utils/column-unlock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/column-unlock/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/comments/disable-search-link/index.md: -------------------------------------------------------------------------------- 1 | 禁用评论区的搜索词链接. -------------------------------------------------------------------------------- /registry/lib/components/utils/dev-client/Action.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/dev-client/Action.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/dev-client/Widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/dev-client/Widget.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/dev-client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/dev-client/client.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/dev-client/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/dev-client/converter.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/dev-client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/dev-client/index.md -------------------------------------------------------------------------------- /registry/lib/components/utils/dev-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/dev-client/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/dev-client/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/dev-client/options.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/dev-client/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/dev-client/plugin.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/download-audio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/download-audio/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/image-exporter/Widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/image-exporter/Widget.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/image-exporter/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/image-exporter/feed.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/image-exporter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/image-exporter/index.md -------------------------------------------------------------------------------- /registry/lib/components/utils/image-exporter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/image-exporter/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/image-resolution/fix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/image-resolution/fix.scss -------------------------------------------------------------------------------- /registry/lib/components/utils/image-resolution/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/image-resolution/index.md -------------------------------------------------------------------------------- /registry/lib/components/utils/image-resolution/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/image-resolution/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/import-series/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/import-series/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/import-series/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/import-series/logic.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/ip-show/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/ip-show/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/keymap/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/keymap/actions.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/keymap/bindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/keymap/bindings.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/keymap/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/keymap/help.md -------------------------------------------------------------------------------- /registry/lib/components/utils/keymap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/keymap/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/keymap/playback-tip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/keymap/playback-tip.scss -------------------------------------------------------------------------------- /registry/lib/components/utils/keymap/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/keymap/presets.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/keymap/settings/vm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/keymap/settings/vm.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/remove-promotions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/remove-promotions/index.md -------------------------------------------------------------------------------- /registry/lib/components/utils/remove-promotions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/remove-promotions/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/url-params-clean/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/url-params-clean/index.md -------------------------------------------------------------------------------- /registry/lib/components/utils/url-params-clean/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/url-params-clean/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/v1-migrate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/v1-migrate/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/v1-migrate/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/v1-migrate/migrate.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/view-cover/Plugin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/view-cover/Plugin.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/view-cover/ViewCover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/view-cover/ViewCover.vue -------------------------------------------------------------------------------- /registry/lib/components/utils/view-cover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/utils/view-cover/index.ts -------------------------------------------------------------------------------- /registry/lib/components/utils/view-cover/types.ts: -------------------------------------------------------------------------------- 1 | export type CoverDownloadType = 'jpg' 2 | -------------------------------------------------------------------------------- /registry/lib/components/video/av-url/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/av-url/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/biliplus-redirect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/biliplus-redirect/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/bvid-convert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/bvid-convert/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/danmaku/airborne/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/danmaku/airborne/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/danmaku/download/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/danmaku/download/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/danmaku/download/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/danmaku/download/utils.ts -------------------------------------------------------------------------------- /registry/lib/components/video/danmaku/expand/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/danmaku/expand/index.md -------------------------------------------------------------------------------- /registry/lib/components/video/danmaku/expand/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/danmaku/expand/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/danmaku/unescape/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/danmaku/unescape/index.md -------------------------------------------------------------------------------- /registry/lib/components/video/danmaku/unescape/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/danmaku/unescape/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/default-location/_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/default-location/_bar.scss -------------------------------------------------------------------------------- /registry/lib/components/video/default-location/desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/default-location/desc.md -------------------------------------------------------------------------------- /registry/lib/components/video/default-location/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/default-location/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/download/DownloadVideo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/DownloadVideo.vue -------------------------------------------------------------------------------- /registry/lib/components/video/download/Widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/Widget.vue -------------------------------------------------------------------------------- /registry/lib/components/video/download/apis/dash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/apis/dash.ts -------------------------------------------------------------------------------- /registry/lib/components/video/download/apis/flv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/apis/flv.ts -------------------------------------------------------------------------------- /registry/lib/components/video/download/apis/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/apis/url.ts -------------------------------------------------------------------------------- /registry/lib/components/video/download/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/error.ts -------------------------------------------------------------------------------- /registry/lib/components/video/download/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/index.md -------------------------------------------------------------------------------- /registry/lib/components/video/download/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/download/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/download/types.ts -------------------------------------------------------------------------------- /registry/lib/components/video/full-description/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/full-description/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/metadata/Plugin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/metadata/Plugin.vue -------------------------------------------------------------------------------- /registry/lib/components/video/metadata/SaveMetadata.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/metadata/SaveMetadata.vue -------------------------------------------------------------------------------- /registry/lib/components/video/metadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/metadata/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/metadata/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/metadata/metadata.ts -------------------------------------------------------------------------------- /registry/lib/components/video/metadata/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/metadata/options.ts -------------------------------------------------------------------------------- /registry/lib/components/video/outer-watchlater/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/outer-watchlater/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/player/auto-light/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/player/auto-light/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/player/common/speed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/player/common/speed.ts -------------------------------------------------------------------------------- /registry/lib/components/video/player/disable-double-click-fullscreen/index.md: -------------------------------------------------------------------------------- 1 | 禁用播放器的双击全屏功能. 2 | -------------------------------------------------------------------------------- /registry/lib/components/video/player/focus/desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/player/focus/desc.md -------------------------------------------------------------------------------- /registry/lib/components/video/player/focus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/player/focus/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/player/screenshot/desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/player/screenshot/desc.md -------------------------------------------------------------------------------- /registry/lib/components/video/player/screenshot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/player/screenshot/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/player/show-cover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/player/show-cover/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/quick-favorite/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/quick-favorite/_font.scss -------------------------------------------------------------------------------- /registry/lib/components/video/quick-favorite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/quick-favorite/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/quick-favorite/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/quick-favorite/options.ts -------------------------------------------------------------------------------- /registry/lib/components/video/seo-redirect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/seo-redirect/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/subtitle/download/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/subtitle/download/index.md -------------------------------------------------------------------------------- /registry/lib/components/video/subtitle/download/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/subtitle/download/index.ts -------------------------------------------------------------------------------- /registry/lib/components/video/subtitle/download/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/components/video/subtitle/download/utils.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/README.md: -------------------------------------------------------------------------------- 1 | 包含一些曾经存在的功能, 因 b 站更新现已废弃. 2 | -------------------------------------------------------------------------------- /registry/lib/deprecated/auto-continue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/auto-continue/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/auto-draw/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/auto-draw/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/comments-translate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/comments-translate/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/download-records/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/download-records/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/feeds-translate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/feeds-translate/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/i18n/en-US/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/i18n/en-US/data.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/i18n/en-US/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/i18n/en-US/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/i18n/ja-JP/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/i18n/ja-JP/data.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/i18n/ja-JP/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/i18n/ja-JP/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/live-default-quality/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/live-default-quality/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/pip/LivePip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/pip/LivePip.vue -------------------------------------------------------------------------------- /registry/lib/deprecated/pip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/pip/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/record-danmaku/RecordDanmaku.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/record-danmaku/RecordDanmaku.vue -------------------------------------------------------------------------------- /registry/lib/deprecated/record-danmaku/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/record-danmaku/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/restore-floors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/restore-floors/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/simplify-home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/simplify-home/home.scss -------------------------------------------------------------------------------- /registry/lib/deprecated/simplify-home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/simplify-home/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/turn-off-danmaku/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/turn-off-danmaku/index.ts -------------------------------------------------------------------------------- /registry/lib/deprecated/video-default-quality/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/deprecated/video-default-quality/index.ts -------------------------------------------------------------------------------- /registry/lib/docs/components-doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/docs/components-doc.ts -------------------------------------------------------------------------------- /registry/lib/docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/docs/index.ts -------------------------------------------------------------------------------- /registry/lib/docs/packages-doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/docs/packages-doc.ts -------------------------------------------------------------------------------- /registry/lib/docs/packages/cleaner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/docs/packages/cleaner.ts -------------------------------------------------------------------------------- /registry/lib/docs/packages/downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/docs/packages/downloader.ts -------------------------------------------------------------------------------- /registry/lib/docs/packages/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/docs/packages/starter.ts -------------------------------------------------------------------------------- /registry/lib/docs/plugins-doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/docs/plugins-doc.ts -------------------------------------------------------------------------------- /registry/lib/docs/third-party.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/docs/third-party.ts -------------------------------------------------------------------------------- /registry/lib/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/id.ts -------------------------------------------------------------------------------- /registry/lib/plugins/feeds/filter/hide-goods/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/feeds/filter/hide-goods/index.md -------------------------------------------------------------------------------- /registry/lib/plugins/feeds/filter/hide-goods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/feeds/filter/hide-goods/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/audio-search/index.md: -------------------------------------------------------------------------------- 1 | 在输入音频的 au 号或播放列表的 am 号时, 提供对应的跳转选项. 2 | -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/audio-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/audio-search/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/bangumi-search/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/bangumi-search/index.md -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/bangumi-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/bangumi-search/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/common.ts -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/cv-search/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/cv-search/index.md -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/cv-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/cv-search/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/number-search/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/number-search/index.md -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/number-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/number-search/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/trending-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/trending-search/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/uid-search/index.md: -------------------------------------------------------------------------------- 1 | 在输入 UID (用户 ID) 时, 提供对应的跳转选项. 2 | -------------------------------------------------------------------------------- /registry/lib/plugins/launch-bar/uid-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/launch-bar/uid-search/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/style/custom-navbar-pgc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/style/custom-navbar-pgc/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/utils/keymap-dark-mode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/utils/keymap-dark-mode/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/v-loading/reimu/ReimuLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/v-loading/reimu/ReimuLoading.vue -------------------------------------------------------------------------------- /registry/lib/plugins/v-loading/reimu/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/v-loading/reimu/image.css -------------------------------------------------------------------------------- /registry/lib/plugins/v-loading/reimu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/v-loading/reimu/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/video/download/empty-output/index.md: -------------------------------------------------------------------------------- 1 | 提供一个 "空" 的输出选项, 只想获取下载视频的附带产物 (弹幕, 字幕等) 时可以使用此插件. 2 | -------------------------------------------------------------------------------- /registry/lib/plugins/video/download/idm-output/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/video/download/idm-output/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/video/download/mpv-output/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/video/download/mpv-output/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/video/download/wasm-output/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/video/download/wasm-output/index.ts -------------------------------------------------------------------------------- /registry/lib/plugins/video/download/wasm-output/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/video/download/wasm-output/utils.ts -------------------------------------------------------------------------------- /registry/lib/plugins/video/player/speed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/lib/plugins/video/player/speed/index.ts -------------------------------------------------------------------------------- /registry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/package.json -------------------------------------------------------------------------------- /registry/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/pnpm-lock.yaml -------------------------------------------------------------------------------- /registry/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/tsconfig.json -------------------------------------------------------------------------------- /registry/webpack/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/webpack/all.ts -------------------------------------------------------------------------------- /registry/webpack/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/webpack/build.ts -------------------------------------------------------------------------------- /registry/webpack/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/webpack/components.ts -------------------------------------------------------------------------------- /registry/webpack/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/webpack/config.ts -------------------------------------------------------------------------------- /registry/webpack/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/webpack/docs.ts -------------------------------------------------------------------------------- /registry/webpack/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/registry/webpack/plugins.ts -------------------------------------------------------------------------------- /src/client/bilibili-evolved.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/client/bilibili-evolved.meta.json -------------------------------------------------------------------------------- /src/client/bilibili-evolved.preview.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/client/bilibili-evolved.preview.meta.json -------------------------------------------------------------------------------- /src/client/bilibili-evolved.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/client/bilibili-evolved.ts -------------------------------------------------------------------------------- /src/client/check-iframes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/client/check-iframes.ts -------------------------------------------------------------------------------- /src/client/common.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/client/common.meta.json -------------------------------------------------------------------------------- /src/client/compatibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/client/compatibility.ts -------------------------------------------------------------------------------- /src/client/init-vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/client/init-vue.ts -------------------------------------------------------------------------------- /src/client/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/client/init.ts -------------------------------------------------------------------------------- /src/components/SwitchOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/SwitchOptions.vue -------------------------------------------------------------------------------- /src/components/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/api.ts -------------------------------------------------------------------------------- /src/components/auto-update/ExtraOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/auto-update/ExtraOptions.vue -------------------------------------------------------------------------------- /src/components/auto-update/checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/auto-update/checker.ts -------------------------------------------------------------------------------- /src/components/auto-update/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/auto-update/index.ts -------------------------------------------------------------------------------- /src/components/auto-update/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/auto-update/utils.ts -------------------------------------------------------------------------------- /src/components/bisector/DialogContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/bisector/DialogContent.vue -------------------------------------------------------------------------------- /src/components/bisector/DialogTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/bisector/DialogTitle.vue -------------------------------------------------------------------------------- /src/components/bisector/ResultToastContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/bisector/ResultToastContent.vue -------------------------------------------------------------------------------- /src/components/bisector/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/bisector/api.ts -------------------------------------------------------------------------------- /src/components/bisector/bisect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/bisector/bisect.ts -------------------------------------------------------------------------------- /src/components/bisector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/bisector/index.ts -------------------------------------------------------------------------------- /src/components/bisector/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/bisector/options.ts -------------------------------------------------------------------------------- /src/components/built-in-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/built-in-components.ts -------------------------------------------------------------------------------- /src/components/compatibilities/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/compatibilities/index.md -------------------------------------------------------------------------------- /src/components/compatibilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/compatibilities/index.ts -------------------------------------------------------------------------------- /src/components/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/component.ts -------------------------------------------------------------------------------- /src/components/define.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/define.ts -------------------------------------------------------------------------------- /src/components/description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/description.ts -------------------------------------------------------------------------------- /src/components/feeds/BangumiCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/BangumiCard.vue -------------------------------------------------------------------------------- /src/components/feeds/ColumnCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/ColumnCard.vue -------------------------------------------------------------------------------- /src/components/feeds/UpInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/UpInfo.vue -------------------------------------------------------------------------------- /src/components/feeds/VideoCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/VideoCard.vue -------------------------------------------------------------------------------- /src/components/feeds/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/api/index.ts -------------------------------------------------------------------------------- /src/components/feeds/api/manager/adaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/api/manager/adaptor.ts -------------------------------------------------------------------------------- /src/components/feeds/api/manager/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/api/manager/base.ts -------------------------------------------------------------------------------- /src/components/feeds/api/manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/api/manager/index.ts -------------------------------------------------------------------------------- /src/components/feeds/api/manager/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/api/manager/v1.ts -------------------------------------------------------------------------------- /src/components/feeds/api/manager/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/api/manager/v2.ts -------------------------------------------------------------------------------- /src/components/feeds/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/api/types.ts -------------------------------------------------------------------------------- /src/components/feeds/bangumi-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/bangumi-card.ts -------------------------------------------------------------------------------- /src/components/feeds/column-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/column-card.ts -------------------------------------------------------------------------------- /src/components/feeds/disable-profile-popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/disable-profile-popup.ts -------------------------------------------------------------------------------- /src/components/feeds/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/notify.ts -------------------------------------------------------------------------------- /src/components/feeds/video-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/feeds/video-card.ts -------------------------------------------------------------------------------- /src/components/i18n/dom-translator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/i18n/dom-translator.ts -------------------------------------------------------------------------------- /src/components/i18n/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/i18n/helpers.ts -------------------------------------------------------------------------------- /src/components/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/i18n/index.ts -------------------------------------------------------------------------------- /src/components/i18n/machine-translator/translators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/i18n/machine-translator/translators.ts -------------------------------------------------------------------------------- /src/components/i18n/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/i18n/types.ts -------------------------------------------------------------------------------- /src/components/launch-bar/ActionItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/ActionItem.vue -------------------------------------------------------------------------------- /src/components/launch-bar/GlobalLaunchBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/GlobalLaunchBar.vue -------------------------------------------------------------------------------- /src/components/launch-bar/LaunchBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/LaunchBar.vue -------------------------------------------------------------------------------- /src/components/launch-bar/focus-target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/focus-target.ts -------------------------------------------------------------------------------- /src/components/launch-bar/history-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/history-provider.ts -------------------------------------------------------------------------------- /src/components/launch-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/index.ts -------------------------------------------------------------------------------- /src/components/launch-bar/launch-bar-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/launch-bar-action.ts -------------------------------------------------------------------------------- /src/components/launch-bar/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/plugin.ts -------------------------------------------------------------------------------- /src/components/launch-bar/search-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/search-provider.ts -------------------------------------------------------------------------------- /src/components/launch-bar/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/launch-bar/toggle.ts -------------------------------------------------------------------------------- /src/components/live/live-control-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/live/live-control-bar.ts -------------------------------------------------------------------------------- /src/components/live/live-socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/live/live-socket.ts -------------------------------------------------------------------------------- /src/components/notify-new-version/ReleaseContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/notify-new-version/ReleaseContent.vue -------------------------------------------------------------------------------- /src/components/notify-new-version/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/notify-new-version/index.ts -------------------------------------------------------------------------------- /src/components/notify-new-version/release-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/notify-new-version/release-content.ts -------------------------------------------------------------------------------- /src/components/settings-panel/ComponentDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/ComponentDescription.vue -------------------------------------------------------------------------------- /src/components/settings-panel/ComponentDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/ComponentDetail.vue -------------------------------------------------------------------------------- /src/components/settings-panel/ComponentOption.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/ComponentOption.vue -------------------------------------------------------------------------------- /src/components/settings-panel/ComponentSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/ComponentSettings.vue -------------------------------------------------------------------------------- /src/components/settings-panel/ComponentTags.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/ComponentTags.vue -------------------------------------------------------------------------------- /src/components/settings-panel/SettingsContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/SettingsContainer.vue -------------------------------------------------------------------------------- /src/components/settings-panel/SettingsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/SettingsPanel.vue -------------------------------------------------------------------------------- /src/components/settings-panel/TagRing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/TagRing.vue -------------------------------------------------------------------------------- /src/components/settings-panel/WidgetsPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/WidgetsPanel.vue -------------------------------------------------------------------------------- /src/components/settings-panel/dock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/dock.ts -------------------------------------------------------------------------------- /src/components/settings-panel/dock/_center.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/dock/_center.scss -------------------------------------------------------------------------------- /src/components/settings-panel/dock/_left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/dock/_left.scss -------------------------------------------------------------------------------- /src/components/settings-panel/dock/_right.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/dock/_right.scss -------------------------------------------------------------------------------- /src/components/settings-panel/dropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/dropdown.ts -------------------------------------------------------------------------------- /src/components/settings-panel/external-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/external-actions.ts -------------------------------------------------------------------------------- /src/components/settings-panel/index.en-US.md: -------------------------------------------------------------------------------- 1 | TODO: en-US doc -------------------------------------------------------------------------------- /src/components/settings-panel/index.en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/index.en-US.ts -------------------------------------------------------------------------------- /src/components/settings-panel/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/index.md -------------------------------------------------------------------------------- /src/components/settings-panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/index.ts -------------------------------------------------------------------------------- /src/components/settings-panel/mixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/mixins.ts -------------------------------------------------------------------------------- /src/components/settings-panel/search-bar-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/search-bar-actions.ts -------------------------------------------------------------------------------- /src/components/settings-panel/sub-pages/AboutPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/sub-pages/AboutPage.vue -------------------------------------------------------------------------------- /src/components/settings-panel/sub-pages/about-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/sub-pages/about-page.ts -------------------------------------------------------------------------------- /src/components/settings-panel/sub-pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/sub-pages/index.ts -------------------------------------------------------------------------------- /src/components/settings-panel/tag-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/settings-panel/tag-filter.ts -------------------------------------------------------------------------------- /src/components/styled-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/styled-component.ts -------------------------------------------------------------------------------- /src/components/switch-options-old.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/switch-options-old.ts -------------------------------------------------------------------------------- /src/components/switch-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/switch-options.ts -------------------------------------------------------------------------------- /src/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/types.ts -------------------------------------------------------------------------------- /src/components/user-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/user-component.ts -------------------------------------------------------------------------------- /src/components/utils/categories/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/categories/data.ts -------------------------------------------------------------------------------- /src/components/utils/categories/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/categories/icons.svg -------------------------------------------------------------------------------- /src/components/utils/categories/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/categories/raw.json -------------------------------------------------------------------------------- /src/components/utils/categories/tid-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/categories/tid-v2.json -------------------------------------------------------------------------------- /src/components/utils/categories/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/categories/updater.ts -------------------------------------------------------------------------------- /src/components/utils/comment-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment-apis.ts -------------------------------------------------------------------------------- /src/components/utils/comment/areas/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/areas/base.ts -------------------------------------------------------------------------------- /src/components/utils/comment/areas/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/areas/dom.ts -------------------------------------------------------------------------------- /src/components/utils/comment/areas/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/areas/v1.ts -------------------------------------------------------------------------------- /src/components/utils/comment/areas/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/areas/v2.ts -------------------------------------------------------------------------------- /src/components/utils/comment/areas/v3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/areas/v3.ts -------------------------------------------------------------------------------- /src/components/utils/comment/comment-area-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/comment-area-manager.ts -------------------------------------------------------------------------------- /src/components/utils/comment/comment-area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/comment-area.ts -------------------------------------------------------------------------------- /src/components/utils/comment/comment-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/comment-item.ts -------------------------------------------------------------------------------- /src/components/utils/comment/reply-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/reply-item.ts -------------------------------------------------------------------------------- /src/components/utils/comment/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/types.ts -------------------------------------------------------------------------------- /src/components/utils/comment/vnode-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/utils/comment/vnode-manager.ts -------------------------------------------------------------------------------- /src/components/video/VideoControlBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/VideoControlBar.vue -------------------------------------------------------------------------------- /src/components/video/ass-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/ass-utils.ts -------------------------------------------------------------------------------- /src/components/video/player-adaptor/bpx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-adaptor/bpx.ts -------------------------------------------------------------------------------- /src/components/video/player-adaptor/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-adaptor/events.ts -------------------------------------------------------------------------------- /src/components/video/player-adaptor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-adaptor/index.ts -------------------------------------------------------------------------------- /src/components/video/player-adaptor/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-adaptor/v2.ts -------------------------------------------------------------------------------- /src/components/video/player-adaptor/v3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-adaptor/v3.ts -------------------------------------------------------------------------------- /src/components/video/player-adaptor/v4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-adaptor/v4.ts -------------------------------------------------------------------------------- /src/components/video/player-agent/bangumi-player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-agent/bangumi-player.ts -------------------------------------------------------------------------------- /src/components/video/player-agent/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-agent/base.ts -------------------------------------------------------------------------------- /src/components/video/player-agent/bpx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-agent/bpx.ts -------------------------------------------------------------------------------- /src/components/video/player-agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-agent/index.ts -------------------------------------------------------------------------------- /src/components/video/player-agent/live-player.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/video/player-agent/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-agent/types.ts -------------------------------------------------------------------------------- /src/components/video/player-agent/video-player-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-agent/video-player-v2.ts -------------------------------------------------------------------------------- /src/components/video/player-agent/video-player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-agent/video-player.ts -------------------------------------------------------------------------------- /src/components/video/player-light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/player-light.ts -------------------------------------------------------------------------------- /src/components/video/video-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/video-actions.ts -------------------------------------------------------------------------------- /src/components/video/video-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/video-context-menu.ts -------------------------------------------------------------------------------- /src/components/video/video-control-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/video-control-bar.ts -------------------------------------------------------------------------------- /src/components/video/video-cover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/video-cover.ts -------------------------------------------------------------------------------- /src/components/video/video-danmaku.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/video-danmaku.ts -------------------------------------------------------------------------------- /src/components/video/video-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/video-info.ts -------------------------------------------------------------------------------- /src/components/video/video-quality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/video-quality.ts -------------------------------------------------------------------------------- /src/components/video/watchlater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/watchlater.ts -------------------------------------------------------------------------------- /src/components/video/xml-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/video/xml-utils.ts -------------------------------------------------------------------------------- /src/components/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/components/widget.ts -------------------------------------------------------------------------------- /src/core/ajax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/ajax.ts -------------------------------------------------------------------------------- /src/core/cdn-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/cdn-types.ts -------------------------------------------------------------------------------- /src/core/common-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/common-types.ts -------------------------------------------------------------------------------- /src/core/container-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/container-query.ts -------------------------------------------------------------------------------- /src/core/core-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/core-apis.ts -------------------------------------------------------------------------------- /src/core/dialog/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/dialog/Dialog.vue -------------------------------------------------------------------------------- /src/core/dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/dialog/index.ts -------------------------------------------------------------------------------- /src/core/download-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/download-mode.ts -------------------------------------------------------------------------------- /src/core/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/download.ts -------------------------------------------------------------------------------- /src/core/external-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/external-input/index.ts -------------------------------------------------------------------------------- /src/core/external-input/load-feature-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/external-input/load-feature-code.ts -------------------------------------------------------------------------------- /src/core/file-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/file-picker.ts -------------------------------------------------------------------------------- /src/core/horizontal-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/horizontal-scroll.ts -------------------------------------------------------------------------------- /src/core/install-feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/install-feature.ts -------------------------------------------------------------------------------- /src/core/life-cycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/life-cycle.ts -------------------------------------------------------------------------------- /src/core/loading-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/loading-mode.ts -------------------------------------------------------------------------------- /src/core/local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/local-storage.ts -------------------------------------------------------------------------------- /src/core/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/meta.ts -------------------------------------------------------------------------------- /src/core/observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/observer.ts -------------------------------------------------------------------------------- /src/core/performance/component-trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/performance/component-trace.ts -------------------------------------------------------------------------------- /src/core/performance/plugin-trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/performance/plugin-trace.ts -------------------------------------------------------------------------------- /src/core/performance/promise-trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/performance/promise-trace.ts -------------------------------------------------------------------------------- /src/core/performance/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/performance/stats.ts -------------------------------------------------------------------------------- /src/core/reorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/reorder.ts -------------------------------------------------------------------------------- /src/core/runtime-library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/runtime-library.ts -------------------------------------------------------------------------------- /src/core/settings/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/settings/helpers.ts -------------------------------------------------------------------------------- /src/core/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/settings/index.ts -------------------------------------------------------------------------------- /src/core/settings/internal-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/settings/internal-state.ts -------------------------------------------------------------------------------- /src/core/settings/listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/settings/listener.ts -------------------------------------------------------------------------------- /src/core/settings/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/settings/proxy.ts -------------------------------------------------------------------------------- /src/core/settings/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/settings/read.ts -------------------------------------------------------------------------------- /src/core/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/settings/types.ts -------------------------------------------------------------------------------- /src/core/settings/write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/settings/write.ts -------------------------------------------------------------------------------- /src/core/shadow-root/dom-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/shadow-root/dom-entry.ts -------------------------------------------------------------------------------- /src/core/shadow-root/dom-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/shadow-root/dom-observer.ts -------------------------------------------------------------------------------- /src/core/shadow-root/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/shadow-root/index.ts -------------------------------------------------------------------------------- /src/core/shadow-root/root-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/shadow-root/root-observer.ts -------------------------------------------------------------------------------- /src/core/shadow-root/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/shadow-root/styles.ts -------------------------------------------------------------------------------- /src/core/shadow-root/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/shadow-root/types.ts -------------------------------------------------------------------------------- /src/core/spin-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/spin-query.ts -------------------------------------------------------------------------------- /src/core/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/style.ts -------------------------------------------------------------------------------- /src/core/text-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/text-color.ts -------------------------------------------------------------------------------- /src/core/theme-color/image-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/theme-color/image-filter.ts -------------------------------------------------------------------------------- /src/core/theme-color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/theme-color/index.ts -------------------------------------------------------------------------------- /src/core/theme-color/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/theme-color/palette.json -------------------------------------------------------------------------------- /src/core/toast/MiniToast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/toast/MiniToast.vue -------------------------------------------------------------------------------- /src/core/toast/ToastCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/toast/ToastCard.vue -------------------------------------------------------------------------------- /src/core/toast/ToastCardContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/toast/ToastCardContainer.vue -------------------------------------------------------------------------------- /src/core/toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/toast/index.ts -------------------------------------------------------------------------------- /src/core/toast/mini.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/toast/mini.scss -------------------------------------------------------------------------------- /src/core/toast/mini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/toast/mini.ts -------------------------------------------------------------------------------- /src/core/user-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/user-info.ts -------------------------------------------------------------------------------- /src/core/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/constants.ts -------------------------------------------------------------------------------- /src/core/utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/formatters.ts -------------------------------------------------------------------------------- /src/core/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/i18n.ts -------------------------------------------------------------------------------- /src/core/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/index.ts -------------------------------------------------------------------------------- /src/core/utils/lazy-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/lazy-panel.ts -------------------------------------------------------------------------------- /src/core/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/log.ts -------------------------------------------------------------------------------- /src/core/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/sort.ts -------------------------------------------------------------------------------- /src/core/utils/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/title.ts -------------------------------------------------------------------------------- /src/core/utils/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/utils/urls.ts -------------------------------------------------------------------------------- /src/core/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/core/version.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/plugins/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/plugins/api.ts -------------------------------------------------------------------------------- /src/plugins/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/plugins/data.ts -------------------------------------------------------------------------------- /src/plugins/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/plugins/hook.ts -------------------------------------------------------------------------------- /src/plugins/id-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/plugins/id-search/index.ts -------------------------------------------------------------------------------- /src/plugins/id-search/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/plugins/id-search/types.ts -------------------------------------------------------------------------------- /src/plugins/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/plugins/plugin.ts -------------------------------------------------------------------------------- /src/plugins/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/plugins/style.ts -------------------------------------------------------------------------------- /src/shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/shims.d.ts -------------------------------------------------------------------------------- /src/third-party/pako-inflate/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/third-party/pako-inflate/index.d.ts -------------------------------------------------------------------------------- /src/third-party/pako-inflate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/third-party/pako-inflate/index.js -------------------------------------------------------------------------------- /src/ui/AsyncButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/AsyncButton.vue -------------------------------------------------------------------------------- /src/ui/CheckBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/CheckBox.vue -------------------------------------------------------------------------------- /src/ui/ColorPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/ColorPicker.vue -------------------------------------------------------------------------------- /src/ui/DefaultWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/DefaultWidget.vue -------------------------------------------------------------------------------- /src/ui/DpiImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/DpiImage.vue -------------------------------------------------------------------------------- /src/ui/ImagePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/ImagePicker.vue -------------------------------------------------------------------------------- /src/ui/ImageViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/ImageViewer.vue -------------------------------------------------------------------------------- /src/ui/InfiniteScroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/InfiniteScroll.vue -------------------------------------------------------------------------------- /src/ui/ProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/ProgressBar.vue -------------------------------------------------------------------------------- /src/ui/ProgressRing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/ProgressRing.vue -------------------------------------------------------------------------------- /src/ui/RadioButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/RadioButton.vue -------------------------------------------------------------------------------- /src/ui/RangeInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/RangeInput.vue -------------------------------------------------------------------------------- /src/ui/ScrollTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/ScrollTrigger.vue -------------------------------------------------------------------------------- /src/ui/SwitchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/SwitchBox.vue -------------------------------------------------------------------------------- /src/ui/TabControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/TabControl.vue -------------------------------------------------------------------------------- /src/ui/TextArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/TextArea.vue -------------------------------------------------------------------------------- /src/ui/TextBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/TextBox.vue -------------------------------------------------------------------------------- /src/ui/VButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/VButton.vue -------------------------------------------------------------------------------- /src/ui/VDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/VDropdown.vue -------------------------------------------------------------------------------- /src/ui/VEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/VEmpty.vue -------------------------------------------------------------------------------- /src/ui/VLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/VLoading.vue -------------------------------------------------------------------------------- /src/ui/VPopup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/VPopup.vue -------------------------------------------------------------------------------- /src/ui/VSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/VSlider.vue -------------------------------------------------------------------------------- /src/ui/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/_common.scss -------------------------------------------------------------------------------- /src/ui/_effects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/_effects.scss -------------------------------------------------------------------------------- /src/ui/_markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/_markdown.scss -------------------------------------------------------------------------------- /src/ui/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/_tabs.scss -------------------------------------------------------------------------------- /src/ui/color-picker-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/color-picker-wrapper.ts -------------------------------------------------------------------------------- /src/ui/icon/VIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/icon/VIcon.vue -------------------------------------------------------------------------------- /src/ui/icon/_bilifont.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/icon/_bilifont.scss -------------------------------------------------------------------------------- /src/ui/icon/_vanfont.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/icon/_vanfont.scss -------------------------------------------------------------------------------- /src/ui/icon/custom/biliplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/icon/custom/biliplus.svg -------------------------------------------------------------------------------- /src/ui/icon/custom/lv6-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/icon/custom/lv6-plus.svg -------------------------------------------------------------------------------- /src/ui/icon/custom/settings-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/icon/custom/settings-outline.svg -------------------------------------------------------------------------------- /src/ui/icon/custom/widgets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/icon/custom/widgets.svg -------------------------------------------------------------------------------- /src/ui/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/icon/index.ts -------------------------------------------------------------------------------- /src/ui/image-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/image-store.ts -------------------------------------------------------------------------------- /src/ui/image-viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/image-viewer.ts -------------------------------------------------------------------------------- /src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/index.ts -------------------------------------------------------------------------------- /src/ui/mdi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/mdi/index.ts -------------------------------------------------------------------------------- /src/ui/mdi/mdi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/mdi/mdi.css -------------------------------------------------------------------------------- /src/ui/mdi/mdi.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/mdi/mdi.woff2 -------------------------------------------------------------------------------- /src/ui/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/range.ts -------------------------------------------------------------------------------- /src/ui/tab-mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/tab-mapping.ts -------------------------------------------------------------------------------- /src/ui/text-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/text-control.ts -------------------------------------------------------------------------------- /src/ui/v-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/v-empty.ts -------------------------------------------------------------------------------- /src/ui/v-loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/src/ui/v-loading.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.type-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/tsconfig.type-check.json -------------------------------------------------------------------------------- /webpack/cdn/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/cdn/github.ts -------------------------------------------------------------------------------- /webpack/cdn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/cdn/index.ts -------------------------------------------------------------------------------- /webpack/cdn/jsdelivr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/cdn/jsdelivr.ts -------------------------------------------------------------------------------- /webpack/cdn/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/cdn/types.ts -------------------------------------------------------------------------------- /webpack/compilation-info/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/compilation-info/git.ts -------------------------------------------------------------------------------- /webpack/compilation-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/compilation-info/index.ts -------------------------------------------------------------------------------- /webpack/compilation-info/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/compilation-info/runtime.ts -------------------------------------------------------------------------------- /webpack/compilation-info/source-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/compilation-info/source-diff.ts -------------------------------------------------------------------------------- /webpack/inject-metadata/core-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/inject-metadata/core-info.ts -------------------------------------------------------------------------------- /webpack/inject-metadata/description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/inject-metadata/description.ts -------------------------------------------------------------------------------- /webpack/inject-metadata/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/inject-metadata/i18n.ts -------------------------------------------------------------------------------- /webpack/inject-metadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/inject-metadata/index.ts -------------------------------------------------------------------------------- /webpack/inject-metadata/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/inject-metadata/types.ts -------------------------------------------------------------------------------- /webpack/loaders/style-loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/loaders/style-loaders.ts -------------------------------------------------------------------------------- /webpack/loaders/ts-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/loaders/ts-loader.ts -------------------------------------------------------------------------------- /webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/webpack.config.ts -------------------------------------------------------------------------------- /webpack/webpack.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/webpack.dev.ts -------------------------------------------------------------------------------- /webpack/webpack.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the1812/Bilibili-Evolved/HEAD/webpack/webpack.prod.ts --------------------------------------------------------------------------------