├── .gitignore ├── .node-version ├── .npmrc ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_EN.md ├── assets ├── bing-wallpaper.md ├── favicon-edge.svg ├── favicon.svg ├── fonts │ ├── 7LED.ttf │ ├── KBSkittled.ttf │ ├── LCD-regular.ttf │ ├── LCDMono2-ultra.ttf │ ├── LESLIEB.ttf │ ├── OpenCherry-Regular.woff │ ├── advanced-led-board-7.ttf │ ├── arial-rounded-bold.ttf │ ├── kbd-webfont.woff │ ├── pixel-lcd-machine.ttf │ ├── qweather-icons.ttf │ ├── qweather-icons.woff │ ├── qweather-icons.woff2 │ └── the-led-display-st.ttf └── img │ ├── clock │ ├── dark │ │ ├── background.png │ │ ├── hour.png │ │ ├── marker.png │ │ ├── minute.png │ │ └── second.png │ └── light │ │ ├── background.png │ │ ├── hour.png │ │ ├── marker.png │ │ ├── minute.png │ │ └── second.png │ ├── icon │ ├── icon-128x128.png │ ├── icon-16x16.png │ ├── icon-48x48.png │ └── icon.png │ ├── keyboard │ └── esc.png │ └── sponsor │ ├── alipay.jpg │ └── wechat.jpg ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── prettier.config.js ├── scripts ├── locale.ts ├── manifest.ts ├── prepare.ts └── utils.ts ├── shim.d.ts ├── sponsor.md ├── src ├── _locales │ ├── en │ │ └── messages.json │ ├── en_US │ │ └── messages.json │ ├── zh │ │ └── messages.json │ └── zh_CN │ │ └── messages.json ├── api │ ├── image.ts │ ├── index.ts │ ├── poetry.ts │ ├── search.ts │ └── weather.ts ├── background │ ├── config.ts │ ├── index.html │ └── main.ts ├── components │ ├── BookmarkPicker.vue │ ├── ChangelogModal.vue │ ├── CustomColorPicker.vue │ └── Tips.vue ├── composables │ └── useStorageLocal.ts ├── contentScripts │ ├── index.ts │ └── views │ │ └── App.vue ├── directive │ └── lazyImage.ts ├── env.ts ├── lib │ ├── i18n.ts │ └── request.ts ├── locales │ ├── en-US.json │ └── zh-CN.json ├── logic │ ├── bookmark.ts │ ├── common-setup.ts │ ├── config.ts │ ├── constants │ │ ├── app.ts │ │ ├── fonts.ts │ │ ├── index.ts │ │ ├── keyboard.ts │ │ ├── search.ts │ │ ├── urls.ts │ │ └── weather.ts │ ├── database.ts │ ├── gtag.ts │ ├── guide.ts │ ├── icons.ts │ ├── image.ts │ ├── keyboard.ts │ ├── moveable.ts │ ├── poetry.ts │ ├── storage.ts │ ├── store.ts │ ├── task.ts │ └── util.ts ├── manifest.ts ├── newtab │ ├── App.vue │ ├── Content.vue │ ├── content │ │ ├── BackgroundImg.vue │ │ └── RightClickMenu.vue │ ├── draft │ │ ├── DraftDrawer.vue │ │ └── DraftGuideLine.vue │ ├── index.html │ ├── main.ts │ ├── setting │ │ ├── AboutIndex │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── AboutSponsor │ │ │ ├── SponsorToastItem.vue │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── BookmarkFolderSetting │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── CalendarSetting │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── ClockSetting │ │ │ ├── AnalogSetting.vue │ │ │ ├── DateSetting.vue │ │ │ ├── DigitalSetting.vue │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── FocusSetting │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── GeneralSetting │ │ │ ├── BackgroundDrawer.vue │ │ │ ├── BackgroundDrawerImageElement.vue │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── KeyboardSetting │ │ │ ├── BookmarkConfig.vue │ │ │ ├── PresetThemeDrawer.vue │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── MemoSetting │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── NewsSetting │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── SearchSetting │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── SettingPaneTitle.vue │ │ ├── SettingPaneWrap.vue │ │ ├── WeatherSetting │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── YearProgressSetting │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── index.vue │ │ └── registry.ts │ └── widgets │ │ ├── WidgetWrap.vue │ │ ├── bookmarkFolder │ │ ├── config.ts │ │ ├── index.ts │ │ ├── index.vue │ │ └── logic.ts │ │ ├── calendar │ │ ├── config.ts │ │ ├── index.ts │ │ └── index.vue │ │ ├── clockAnalog │ │ ├── config.ts │ │ ├── index.ts │ │ └── index.vue │ │ ├── clockDigital │ │ ├── config.ts │ │ ├── index.ts │ │ └── index.vue │ │ ├── codes.ts │ │ ├── date │ │ ├── config.ts │ │ ├── index.ts │ │ └── index.vue │ │ ├── keyboard │ │ ├── components │ │ │ └── KeyboardKeycap.vue │ │ ├── config.ts │ │ ├── index.ts │ │ ├── index.vue │ │ └── logic.ts │ │ ├── memo │ │ ├── config.ts │ │ ├── index.ts │ │ └── index.vue │ │ ├── news │ │ ├── config.ts │ │ ├── index.ts │ │ ├── index.vue │ │ └── logic.ts │ │ ├── registry.ts │ │ ├── search │ │ ├── config.ts │ │ ├── index.ts │ │ └── index.vue │ │ ├── weather │ │ ├── ForecastWeather.vue │ │ ├── NowWeather.vue │ │ ├── config.ts │ │ ├── index.ts │ │ ├── index.vue │ │ └── logic.ts │ │ └── yearProgress │ │ ├── config.ts │ │ ├── index.ts │ │ └── index.vue ├── popup │ ├── App.vue │ ├── ConfigBookmark.vue │ ├── Content.vue │ ├── index.html │ └── main.ts ├── styles │ ├── animation.css │ ├── const.ts │ ├── font.css │ ├── index.css │ ├── index.ts │ ├── main.css │ ├── qweather-icons.css │ └── reset.css └── types │ ├── bookmark.d.ts │ ├── global.d.ts │ ├── image.d.ts │ ├── news.d.ts │ ├── poetry.d.ts │ ├── shims.d.ts │ └── weather.d.ts ├── tsconfig.json ├── unocss.config.ts ├── vite.config.background.ts ├── vite.config.content.ts └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v22.19.0 -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/README_EN.md -------------------------------------------------------------------------------- /assets/bing-wallpaper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/bing-wallpaper.md -------------------------------------------------------------------------------- /assets/favicon-edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/favicon-edge.svg -------------------------------------------------------------------------------- /assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/favicon.svg -------------------------------------------------------------------------------- /assets/fonts/7LED.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/7LED.ttf -------------------------------------------------------------------------------- /assets/fonts/KBSkittled.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/KBSkittled.ttf -------------------------------------------------------------------------------- /assets/fonts/LCD-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/LCD-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/LCDMono2-ultra.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/LCDMono2-ultra.ttf -------------------------------------------------------------------------------- /assets/fonts/LESLIEB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/LESLIEB.ttf -------------------------------------------------------------------------------- /assets/fonts/OpenCherry-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/OpenCherry-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/advanced-led-board-7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/advanced-led-board-7.ttf -------------------------------------------------------------------------------- /assets/fonts/arial-rounded-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/arial-rounded-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/kbd-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/kbd-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/pixel-lcd-machine.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/pixel-lcd-machine.ttf -------------------------------------------------------------------------------- /assets/fonts/qweather-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/qweather-icons.ttf -------------------------------------------------------------------------------- /assets/fonts/qweather-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/qweather-icons.woff -------------------------------------------------------------------------------- /assets/fonts/qweather-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/qweather-icons.woff2 -------------------------------------------------------------------------------- /assets/fonts/the-led-display-st.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/fonts/the-led-display-st.ttf -------------------------------------------------------------------------------- /assets/img/clock/dark/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/dark/background.png -------------------------------------------------------------------------------- /assets/img/clock/dark/hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/dark/hour.png -------------------------------------------------------------------------------- /assets/img/clock/dark/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/dark/marker.png -------------------------------------------------------------------------------- /assets/img/clock/dark/minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/dark/minute.png -------------------------------------------------------------------------------- /assets/img/clock/dark/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/dark/second.png -------------------------------------------------------------------------------- /assets/img/clock/light/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/light/background.png -------------------------------------------------------------------------------- /assets/img/clock/light/hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/light/hour.png -------------------------------------------------------------------------------- /assets/img/clock/light/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/light/marker.png -------------------------------------------------------------------------------- /assets/img/clock/light/minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/light/minute.png -------------------------------------------------------------------------------- /assets/img/clock/light/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/clock/light/second.png -------------------------------------------------------------------------------- /assets/img/icon/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/icon/icon-128x128.png -------------------------------------------------------------------------------- /assets/img/icon/icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/icon/icon-16x16.png -------------------------------------------------------------------------------- /assets/img/icon/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/icon/icon-48x48.png -------------------------------------------------------------------------------- /assets/img/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/icon/icon.png -------------------------------------------------------------------------------- /assets/img/keyboard/esc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/keyboard/esc.png -------------------------------------------------------------------------------- /assets/img/sponsor/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/sponsor/alipay.jpg -------------------------------------------------------------------------------- /assets/img/sponsor/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/assets/img/sponsor/wechat.jpg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/prettier.config.js -------------------------------------------------------------------------------- /scripts/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/scripts/locale.ts -------------------------------------------------------------------------------- /scripts/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/scripts/manifest.ts -------------------------------------------------------------------------------- /scripts/prepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/scripts/prepare.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/shim.d.ts -------------------------------------------------------------------------------- /sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/sponsor.md -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/en_US/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/_locales/en_US/messages.json -------------------------------------------------------------------------------- /src/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/_locales/zh/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /src/api/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/api/image.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/poetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/api/poetry.ts -------------------------------------------------------------------------------- /src/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/api/search.ts -------------------------------------------------------------------------------- /src/api/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/api/weather.ts -------------------------------------------------------------------------------- /src/background/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/background/config.ts -------------------------------------------------------------------------------- /src/background/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/background/index.html -------------------------------------------------------------------------------- /src/background/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/background/main.ts -------------------------------------------------------------------------------- /src/components/BookmarkPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/components/BookmarkPicker.vue -------------------------------------------------------------------------------- /src/components/ChangelogModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/components/ChangelogModal.vue -------------------------------------------------------------------------------- /src/components/CustomColorPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/components/CustomColorPicker.vue -------------------------------------------------------------------------------- /src/components/Tips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/components/Tips.vue -------------------------------------------------------------------------------- /src/composables/useStorageLocal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/composables/useStorageLocal.ts -------------------------------------------------------------------------------- /src/contentScripts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/contentScripts/index.ts -------------------------------------------------------------------------------- /src/contentScripts/views/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/contentScripts/views/App.vue -------------------------------------------------------------------------------- /src/directive/lazyImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/directive/lazyImage.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/lib/i18n.ts -------------------------------------------------------------------------------- /src/lib/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/lib/request.ts -------------------------------------------------------------------------------- /src/locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/locales/en-US.json -------------------------------------------------------------------------------- /src/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/locales/zh-CN.json -------------------------------------------------------------------------------- /src/logic/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/bookmark.ts -------------------------------------------------------------------------------- /src/logic/common-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/common-setup.ts -------------------------------------------------------------------------------- /src/logic/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/config.ts -------------------------------------------------------------------------------- /src/logic/constants/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/constants/app.ts -------------------------------------------------------------------------------- /src/logic/constants/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/constants/fonts.ts -------------------------------------------------------------------------------- /src/logic/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/constants/index.ts -------------------------------------------------------------------------------- /src/logic/constants/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/constants/keyboard.ts -------------------------------------------------------------------------------- /src/logic/constants/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/constants/search.ts -------------------------------------------------------------------------------- /src/logic/constants/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/constants/urls.ts -------------------------------------------------------------------------------- /src/logic/constants/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/constants/weather.ts -------------------------------------------------------------------------------- /src/logic/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/database.ts -------------------------------------------------------------------------------- /src/logic/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/gtag.ts -------------------------------------------------------------------------------- /src/logic/guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/guide.ts -------------------------------------------------------------------------------- /src/logic/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/icons.ts -------------------------------------------------------------------------------- /src/logic/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/image.ts -------------------------------------------------------------------------------- /src/logic/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/keyboard.ts -------------------------------------------------------------------------------- /src/logic/moveable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/moveable.ts -------------------------------------------------------------------------------- /src/logic/poetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/poetry.ts -------------------------------------------------------------------------------- /src/logic/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/storage.ts -------------------------------------------------------------------------------- /src/logic/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/store.ts -------------------------------------------------------------------------------- /src/logic/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/task.ts -------------------------------------------------------------------------------- /src/logic/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/logic/util.ts -------------------------------------------------------------------------------- /src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/manifest.ts -------------------------------------------------------------------------------- /src/newtab/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/App.vue -------------------------------------------------------------------------------- /src/newtab/Content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/Content.vue -------------------------------------------------------------------------------- /src/newtab/content/BackgroundImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/content/BackgroundImg.vue -------------------------------------------------------------------------------- /src/newtab/content/RightClickMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/content/RightClickMenu.vue -------------------------------------------------------------------------------- /src/newtab/draft/DraftDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/draft/DraftDrawer.vue -------------------------------------------------------------------------------- /src/newtab/draft/DraftGuideLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/draft/DraftGuideLine.vue -------------------------------------------------------------------------------- /src/newtab/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/index.html -------------------------------------------------------------------------------- /src/newtab/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/main.ts -------------------------------------------------------------------------------- /src/newtab/setting/AboutIndex/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/AboutIndex/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/AboutIndex/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/AboutIndex/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/AboutSponsor/SponsorToastItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/AboutSponsor/SponsorToastItem.vue -------------------------------------------------------------------------------- /src/newtab/setting/AboutSponsor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/AboutSponsor/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/AboutSponsor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/AboutSponsor/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/BookmarkFolderSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/BookmarkFolderSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/BookmarkFolderSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/BookmarkFolderSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/CalendarSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/CalendarSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/CalendarSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/CalendarSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/ClockSetting/AnalogSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/ClockSetting/AnalogSetting.vue -------------------------------------------------------------------------------- /src/newtab/setting/ClockSetting/DateSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/ClockSetting/DateSetting.vue -------------------------------------------------------------------------------- /src/newtab/setting/ClockSetting/DigitalSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/ClockSetting/DigitalSetting.vue -------------------------------------------------------------------------------- /src/newtab/setting/ClockSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/ClockSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/ClockSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/ClockSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/FocusSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/FocusSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/FocusSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/FocusSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/GeneralSetting/BackgroundDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/GeneralSetting/BackgroundDrawer.vue -------------------------------------------------------------------------------- /src/newtab/setting/GeneralSetting/BackgroundDrawerImageElement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/GeneralSetting/BackgroundDrawerImageElement.vue -------------------------------------------------------------------------------- /src/newtab/setting/GeneralSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/GeneralSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/GeneralSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/GeneralSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/KeyboardSetting/BookmarkConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/KeyboardSetting/BookmarkConfig.vue -------------------------------------------------------------------------------- /src/newtab/setting/KeyboardSetting/PresetThemeDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/KeyboardSetting/PresetThemeDrawer.vue -------------------------------------------------------------------------------- /src/newtab/setting/KeyboardSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/KeyboardSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/KeyboardSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/KeyboardSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/MemoSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/MemoSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/MemoSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/MemoSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/NewsSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/NewsSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/NewsSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/NewsSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/SearchSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/SearchSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/SearchSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/SearchSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/SettingPaneTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/SettingPaneTitle.vue -------------------------------------------------------------------------------- /src/newtab/setting/SettingPaneWrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/SettingPaneWrap.vue -------------------------------------------------------------------------------- /src/newtab/setting/WeatherSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/WeatherSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/WeatherSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/WeatherSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/YearProgressSetting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/YearProgressSetting/index.ts -------------------------------------------------------------------------------- /src/newtab/setting/YearProgressSetting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/YearProgressSetting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/index.vue -------------------------------------------------------------------------------- /src/newtab/setting/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/setting/registry.ts -------------------------------------------------------------------------------- /src/newtab/widgets/WidgetWrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/WidgetWrap.vue -------------------------------------------------------------------------------- /src/newtab/widgets/bookmarkFolder/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/bookmarkFolder/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/bookmarkFolder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/bookmarkFolder/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/bookmarkFolder/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/bookmarkFolder/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/bookmarkFolder/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/bookmarkFolder/logic.ts -------------------------------------------------------------------------------- /src/newtab/widgets/calendar/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/calendar/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/calendar/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/calendar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/calendar/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/clockAnalog/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/clockAnalog/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/clockAnalog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/clockAnalog/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/clockAnalog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/clockAnalog/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/clockDigital/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/clockDigital/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/clockDigital/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/clockDigital/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/clockDigital/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/clockDigital/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/codes.ts -------------------------------------------------------------------------------- /src/newtab/widgets/date/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/date/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/date/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/date/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/date/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/keyboard/components/KeyboardKeycap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/keyboard/components/KeyboardKeycap.vue -------------------------------------------------------------------------------- /src/newtab/widgets/keyboard/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/keyboard/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/keyboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/keyboard/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/keyboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/keyboard/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/keyboard/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/keyboard/logic.ts -------------------------------------------------------------------------------- /src/newtab/widgets/memo/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/memo/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/memo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/memo/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/memo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/memo/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/news/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/news/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/news/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/news/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/news/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/news/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/news/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/news/logic.ts -------------------------------------------------------------------------------- /src/newtab/widgets/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/registry.ts -------------------------------------------------------------------------------- /src/newtab/widgets/search/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/search/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/search/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/search/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/search/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/weather/ForecastWeather.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/weather/ForecastWeather.vue -------------------------------------------------------------------------------- /src/newtab/widgets/weather/NowWeather.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/weather/NowWeather.vue -------------------------------------------------------------------------------- /src/newtab/widgets/weather/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/weather/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/weather/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/weather/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/weather/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/weather/index.vue -------------------------------------------------------------------------------- /src/newtab/widgets/weather/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/weather/logic.ts -------------------------------------------------------------------------------- /src/newtab/widgets/yearProgress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/yearProgress/config.ts -------------------------------------------------------------------------------- /src/newtab/widgets/yearProgress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/yearProgress/index.ts -------------------------------------------------------------------------------- /src/newtab/widgets/yearProgress/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/newtab/widgets/yearProgress/index.vue -------------------------------------------------------------------------------- /src/popup/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/popup/App.vue -------------------------------------------------------------------------------- /src/popup/ConfigBookmark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/popup/ConfigBookmark.vue -------------------------------------------------------------------------------- /src/popup/Content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/popup/Content.vue -------------------------------------------------------------------------------- /src/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/popup/index.html -------------------------------------------------------------------------------- /src/popup/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/popup/main.ts -------------------------------------------------------------------------------- /src/styles/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/styles/animation.css -------------------------------------------------------------------------------- /src/styles/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/styles/const.ts -------------------------------------------------------------------------------- /src/styles/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/styles/font.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/styles/main.css -------------------------------------------------------------------------------- /src/styles/qweather-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/styles/qweather-icons.css -------------------------------------------------------------------------------- /src/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/styles/reset.css -------------------------------------------------------------------------------- /src/types/bookmark.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/types/bookmark.d.ts -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/types/image.d.ts -------------------------------------------------------------------------------- /src/types/news.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/types/news.d.ts -------------------------------------------------------------------------------- /src/types/poetry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/types/poetry.d.ts -------------------------------------------------------------------------------- /src/types/shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/types/shims.d.ts -------------------------------------------------------------------------------- /src/types/weather.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/src/types/weather.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/tsconfig.json -------------------------------------------------------------------------------- /unocss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/unocss.config.ts -------------------------------------------------------------------------------- /vite.config.background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/vite.config.background.ts -------------------------------------------------------------------------------- /vite.config.content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/vite.config.content.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GXFG/newtab-naivetab/HEAD/vite.config.ts --------------------------------------------------------------------------------