├── .gitattributes ├── .github ├── assets │ └── readme │ │ ├── Link2RuntimeRepo.svg │ │ ├── logo_with_wordmark_dark.svg │ │ ├── logo_with_wordmark_light.svg │ │ ├── noraneko.structure.dark.excalidraw.svg │ │ └── noraneko.structure.light.excalidraw.svg └── workflows │ ├── copilot-setup-steps.yml │ ├── package.yml │ ├── package_and_publish_alpha.yml │ └── publish_alpha.yml ├── .gitignore ├── .npmrc ├── .prettierrc.yml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── bridge ├── loader-features │ ├── .gitignore │ ├── deno.json │ ├── loader │ │ ├── index.ts │ │ ├── modules-hooks.ts │ │ └── modules.ts │ ├── tsconfig.json │ └── vite.config.ts ├── loader-modules │ ├── .gitignore │ ├── deno.json │ ├── package.json │ ├── tsconfig.json │ └── tsdown.config.ts └── startup │ ├── deno.json │ ├── src │ ├── about-newtab.ts │ ├── about-preferences.ts │ └── chrome_root.ts │ ├── tsconfig.json │ └── tsdown.config.ts ├── browser-features ├── chrome │ ├── @types │ │ ├── i18next.d.ts │ │ └── tab-rename.d.ts │ ├── README.md │ ├── common │ │ ├── browser-share-mode │ │ │ ├── browser-share-mode.tsx │ │ │ ├── index.ts │ │ │ └── share-mode.css │ │ ├── browser-tab-color │ │ │ ├── index.ts │ │ │ └── tabcolor-manager.tsx │ │ ├── context-menu │ │ │ └── index.ts │ │ ├── mod.ts │ │ ├── reverse-sidebar-position │ │ │ ├── README.md │ │ │ ├── icon.css │ │ │ ├── index.ts │ │ │ └── reverse-sidebar-position.tsx │ │ ├── sidebar-addon-panel │ │ │ ├── data │ │ │ │ └── migration.ts │ │ │ ├── icons │ │ │ │ └── notes.svg │ │ │ ├── index.ts │ │ │ ├── panel │ │ │ │ ├── browsers │ │ │ │ │ ├── chrome-site-browser.tsx │ │ │ │ │ ├── extension-site-browser.tsx │ │ │ │ │ └── web-site-browser.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── panel-navigator.ts │ │ │ │ ├── website-panel-window-child.ts │ │ │ │ └── website-panel-window-parent.ts │ │ │ └── ui │ │ │ │ ├── components │ │ │ │ ├── browser-box.tsx │ │ │ │ ├── floating-splitter.tsx │ │ │ │ ├── floating.tsx │ │ │ │ ├── panel-sidebar-modal.tsx │ │ │ │ ├── panel-sidebar.tsx │ │ │ │ ├── sidebar-contextMenu.tsx │ │ │ │ ├── sidebar-header.tsx │ │ │ │ ├── sidebar-panel-button.tsx │ │ │ │ ├── sidebar-selectbox.tsx │ │ │ │ ├── sidebar-splitter.tsx │ │ │ │ └── sidebar.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles │ │ │ │ ├── modal-style.css │ │ │ │ └── style.css │ │ ├── sidebar │ │ │ ├── core │ │ │ │ ├── data.ts │ │ │ │ ├── extension-panels.ts │ │ │ │ ├── index.ts │ │ │ │ ├── static-panels.ts │ │ │ │ └── utils │ │ │ │ │ ├── default-prerf.ts │ │ │ │ │ ├── favicon-getter.ts │ │ │ │ │ ├── panel-sidebar-static-names.ts │ │ │ │ │ ├── type.ts │ │ │ │ │ ├── userContextColor-getter.ts │ │ │ │ │ └── webRequest.ts │ │ │ └── index.ts │ │ ├── statusbar │ │ │ ├── README.md │ │ │ ├── context-menu.tsx │ │ │ ├── index.ts │ │ │ ├── statusbar-manager.tsx │ │ │ ├── statusbar.css │ │ │ └── statusbar.tsx │ │ ├── tab-rename │ │ │ ├── IMPLEMENTATION.md │ │ │ ├── TESTING.md │ │ │ ├── index.ts │ │ │ ├── tab-rename-manager.ts │ │ │ └── tab-rename.css │ │ ├── undo-closed-tab │ │ │ ├── icon.css │ │ │ ├── index.ts │ │ │ └── styleElem.tsx │ │ └── update-refresh-cache │ │ │ └── index.ts │ ├── deno.json │ ├── example │ │ ├── aaa.ts │ │ └── counter │ │ │ ├── Counter.tsx │ │ │ └── index.ts │ ├── experiment │ │ ├── csk │ │ │ ├── csk │ │ │ │ ├── category.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── setkey.ts │ │ │ ├── hashchange.ts │ │ │ └── index.ts │ │ └── hmr │ │ │ ├── counter.tsx │ │ │ └── index.ts │ ├── static │ │ ├── downloadbar │ │ │ ├── README.md │ │ │ ├── downloadbar-manager.tsx │ │ │ ├── downloadbar.css │ │ │ ├── downloadbar.tsx │ │ │ └── index.ts │ │ ├── mod.ts │ │ ├── overrides │ │ │ ├── index.ts │ │ │ └── overrides.ts │ │ └── prefs │ │ │ └── index.ts │ ├── test │ │ ├── index.ts │ │ └── unit │ │ │ └── onModuleLoaded.test.ts │ └── utils │ │ ├── base.ts │ │ ├── browser-action.tsx │ │ ├── context-menu.tsx │ │ ├── decorator.d.ts │ │ ├── modal │ │ ├── index.tsx │ │ └── styles.css │ │ └── stylesheet-service.ts ├── modules │ ├── .oxlintrc.json │ ├── actors │ │ ├── NRAboutNewTabChild.sys.mts │ │ ├── NRAboutPreferencesChild.sys.mts │ │ ├── NRAppConstantsChild.sys.mts │ │ ├── NRAppConstantsParent.sys.mts │ │ ├── NRProgressiveWebAppChild.sys.mts │ │ ├── NRProgressiveWebAppParent.sys.mts │ │ ├── NRPwaManagerChild.sys.mts │ │ ├── NRPwaManagerParent.sys.mts │ │ ├── NRRestartBrowserChild.sys.mts │ │ ├── NRRestartBrowserParent.sys.mts │ │ ├── NRSettingsChild.sys.mts │ │ ├── NRSettingsParent.sys.mts │ │ ├── NRSyncManagerChild.sys.mts │ │ ├── NRSyncManagerParent.sys.mts │ │ ├── NRTabManagerChild.sys.mts │ │ ├── NRTabManagerParent.sys.mts │ │ ├── NRTestChild.sys.mts │ │ └── NRTestParent.sys.mts │ ├── common │ │ ├── NRTestTypes.ts │ │ └── defines.ts │ ├── deno.json │ └── modules │ │ ├── BrowserGlue.sys.mts │ │ ├── NoranekoConstants.sys.mts │ │ ├── NoranekoStartup.sys.mts │ │ └── pwa │ │ ├── DataStore.sys.mts │ │ ├── ImageTools.sys.mts │ │ ├── SsbCommandLineHandler.sys.mts │ │ ├── supports │ │ └── Windows.sys.mts │ │ └── type.ts ├── pages-newtab │ ├── deno.json │ ├── index.html │ ├── src │ │ ├── main.ts │ │ └── style.css │ └── vite.config.ts └── skin │ ├── deno.json │ ├── fluerial │ ├── README.md │ ├── css │ │ └── fluerial.css │ └── icons │ │ ├── add_FILL0_wght700_GRAD200_opsz48.svg │ │ ├── arrow_back_FILL0_wght700_GRAD200_opsz48.svg │ │ ├── arrow_forward_FILL0_wght700_GRAD200_opsz48.svg │ │ ├── close_FILL0_wght700_GRAD200_opsz48.svg │ │ ├── expand_more_FILL0_wght700_GRAD0_opsz24.svg │ │ ├── extension_FILL0_wght700_GRAD200_opsz48.svg │ │ ├── more_vert_FILL0_wght700_GRAD200_opsz48.svg │ │ └── refresh_FILL0_wght700_GRAD200_opsz48.svg │ ├── jar.mn │ ├── lepton │ ├── LEPTON │ ├── css │ │ ├── leptonChrome.css │ │ └── leptonContent.css │ ├── icons │ │ ├── add-device.svg │ │ ├── addons-logo.svg │ │ ├── arrow-between-down.svg │ │ ├── arrow-repeat-all.svg │ │ ├── arrow-sort-down-lines.svg │ │ ├── arrow-swap.svg │ │ ├── auto-fit-width.svg │ │ ├── blank.svg │ │ ├── blue-berror.svg │ │ ├── book-add.svg │ │ ├── book.svg │ │ ├── bookmark-multiple.svg │ │ ├── bookmarks-toolbar-alt.svg │ │ ├── bookmarks-toolbar.svg │ │ ├── bookmarksMenu-open.svg │ │ ├── bookmarksMenu-open2.svg │ │ ├── bookmarksToolbar-open-alt.svg │ │ ├── bookmarksToolbar-open.svg │ │ ├── broom.svg │ │ ├── bug.svg │ │ ├── calendar-agenda.svg │ │ ├── characterEncoding.svg │ │ ├── checkmark-circle.svg │ │ ├── code.svg │ │ ├── command-console.svg │ │ ├── command-eyedropper.svg │ │ ├── command-frames.svg │ │ ├── command-pick.svg │ │ ├── command-responsivemode.svg │ │ ├── container-openin-16.svg │ │ ├── content-view.svg │ │ ├── copy-select.svg │ │ ├── dashboard.svg │ │ ├── datarestore.svg │ │ ├── datastore.svg │ │ ├── developer.svg │ │ ├── device-desktop.svg │ │ ├── device-phone.svg │ │ ├── device-tablet.svg │ │ ├── device-tv.svg │ │ ├── device-vr.svg │ │ ├── dismiss-filled.svg │ │ ├── document-css.svg │ │ ├── document-endnote.svg │ │ ├── document-landscape-split-hint.svg │ │ ├── document-search.svg │ │ ├── drawer-arrow-download.svg │ │ ├── edit-copy.svg │ │ ├── edit-cut.svg │ │ ├── edit-paste-go.svg │ │ ├── edit-paste-search.svg │ │ ├── edit-paste.svg │ │ ├── enter-fullscreen.svg │ │ ├── eraser.svg │ │ ├── error-connection-failure.svg │ │ ├── error-malformed-url.svg │ │ ├── error-server-not-found.svg │ │ ├── error-session-restore.svg │ │ ├── error-tab-crashed.svg │ │ ├── exit-fullscreen.svg │ │ ├── eye-hide.svg │ │ ├── eye-show.svg │ │ ├── eye-tracking-off.svg │ │ ├── filter-dismiss.svg │ │ ├── filter-reload.svg │ │ ├── firefox-view.svg │ │ ├── flame.svg │ │ ├── fluid.svg │ │ ├── folder-globe.svg │ │ ├── folder-open.svg │ │ ├── folder.svg │ │ ├── forget.svg │ │ ├── highlight.svg │ │ ├── history-reverse.svg │ │ ├── horizon-night.svg │ │ ├── horizon-sunrise.svg │ │ ├── identity-icons-brand.svg │ │ ├── image-add.svg │ │ ├── image-alt-text.svg │ │ ├── image-arrow-counterclockwise.svg │ │ ├── image-copy.svg │ │ ├── image.svg │ │ ├── import-export.svg │ │ ├── ion.svg │ │ ├── key-multiple.svg │ │ ├── link-no-tracking.svg │ │ ├── link-square.svg │ │ ├── link.svg │ │ ├── lock-closed.svg │ │ ├── mail-inbox-all.svg │ │ ├── mail-inbox.svg │ │ ├── mail.svg │ │ ├── menu-check.svg │ │ ├── merge.svg │ │ ├── movetowindow-16.svg │ │ ├── new-tab-forward-photon.svg │ │ ├── new-tab-forward.svg │ │ ├── new-tab-multiple-photon.svg │ │ ├── new-tab-multiple.svg │ │ ├── new-tab-photon.svg │ │ ├── new-tab-skip-forward-photon.svg │ │ ├── new-tab-skip-forward.svg │ │ ├── new-tab.svg │ │ ├── no-search-results.svg │ │ ├── panelarrow-vertical-reverse.svg │ │ ├── panelarrow-vertical.svg │ │ ├── password-hide.svg │ │ ├── password.svg │ │ ├── paste-text.svg │ │ ├── paste-url.svg │ │ ├── paste.svg │ │ ├── performance.svg │ │ ├── pin-tab.svg │ │ ├── play.svg │ │ ├── plug-disconnected.svg │ │ ├── pocket-outline.svg │ │ ├── private-favicon.svg │ │ ├── pulse-square.svg │ │ ├── pwa-install.svg │ │ ├── pwa-launch.svg │ │ ├── pwa-manage.svg │ │ ├── pwa-remove.svg │ │ ├── quit.svg │ │ ├── redo.svg │ │ ├── refresh-cw.svg │ │ ├── relay-logo.svg │ │ ├── reload-auto.svg │ │ ├── reload.svg │ │ ├── resize-image.svg │ │ ├── resize.svg │ │ ├── restore-session.svg │ │ ├── screenshot-1.svg │ │ ├── screenshot.svg │ │ ├── select-all-on.svg │ │ ├── send-to-device.svg │ │ ├── send.svg │ │ ├── share.svg │ │ ├── shield-task.svg │ │ ├── sign-out.svg │ │ ├── sort.svg │ │ ├── star-line-horizontal.svg │ │ ├── synced-tabs.svg │ │ ├── tab-bottom-corner-left-australis-clipped.svg │ │ ├── tab-bottom-corner-left-australis.svg │ │ ├── tab-bottom-corner-left-chrome-clipped.svg │ │ ├── tab-bottom-corner-left-chrome.svg │ │ ├── tab-bottom-corner-left-chromeLegacy-clipped.svg │ │ ├── tab-bottom-corner-left-chromeLegacy.svg │ │ ├── tab-bottom-corner-left-edge-clipped.svg │ │ ├── tab-bottom-corner-left-edge.svg │ │ ├── tab-bottom-corner-left-wave-clipped.svg │ │ ├── tab-bottom-corner-left-wave.svg │ │ ├── tab-bottom-corner-left.svg │ │ ├── tab-bottom-corner-right-australis-cilpped.svg │ │ ├── tab-bottom-corner-right-australis.svg │ │ ├── tab-bottom-corner-right-chrome-clipped.svg │ │ ├── tab-bottom-corner-right-chrome.svg │ │ ├── tab-bottom-corner-right-chromeLegacy-clipped.svg │ │ ├── tab-bottom-corner-right-chromeLegacy.svg │ │ ├── tab-bottom-corner-right-edge-clipped.svg │ │ ├── tab-bottom-corner-right-edge.svg │ │ ├── tab-bottom-corner-right-wave-clipped.svg │ │ ├── tab-bottom-corner-right-wave.svg │ │ ├── tab-bottom-corner-right.svg │ │ ├── tab-copy-photon.svg │ │ ├── tab-copy.svg │ │ ├── tab-desktop-multiple-bottom.svg │ │ ├── tab-desktop-multiple.svg │ │ ├── tab-multiple.svg │ │ ├── tab-photon.svg │ │ ├── tab-unload-photon.svg │ │ ├── tab-unload.svg │ │ ├── tab.svg │ │ ├── tag-open.svg │ │ ├── tag.svg │ │ ├── text-direction-horizontal-ltr.svg │ │ ├── text-number-format.svg │ │ ├── text-proofing-tools.svg │ │ ├── text-sort-ascending.svg │ │ ├── time-picker.svg │ │ ├── timer10.svg │ │ ├── tool-accessibility.svg │ │ ├── toolbar.svg │ │ ├── toolbarButton-download.svg │ │ ├── toolbarButton-upload.svg │ │ ├── toolbox.svg │ │ ├── translations.svg │ │ ├── undo.svg │ │ ├── unpin-tab.svg │ │ ├── vertical-line.svg │ │ ├── video-clip.svg │ │ ├── video-snapshot.svg │ │ ├── video.svg │ │ ├── weather-snowflake.svg │ │ ├── welcome-back.svg │ │ ├── whatsnew.svg │ │ ├── window-dev-tools.svg │ │ ├── window.svg │ │ └── wrench-filled.svg │ └── userjs │ │ ├── lepton.js │ │ ├── photon.js │ │ └── protonfix.js │ ├── moz.build │ ├── noraneko │ └── cat_hand_black.png │ └── package.json ├── deno.json ├── deno.lock ├── i18n ├── config-browser-chrome.ts ├── config.ts ├── default.d.ts ├── en-US │ ├── _meta.toml │ ├── browser-chrome.json │ └── default.json ├── ja-JP-x-kansai │ ├── _meta.toml │ ├── browser-chrome.json │ └── default.json └── ja-JP │ ├── _meta.toml │ ├── browser-chrome.json │ └── default.json ├── libs ├── @types │ └── gecko │ │ ├── deno.json │ │ ├── generated │ │ ├── README │ │ ├── lib.gecko.darwin.d.ts │ │ ├── lib.gecko.dom.d.ts │ │ ├── lib.gecko.glean.d.ts │ │ ├── lib.gecko.linux.d.ts │ │ ├── lib.gecko.modules.d.ts │ │ ├── lib.gecko.nsresult.d.ts │ │ ├── lib.gecko.services.d.ts │ │ ├── lib.gecko.win32.d.ts │ │ ├── lib.gecko.xpcom.d.ts │ │ └── tspaths.json │ │ ├── index.d.ts │ │ ├── lib.gecko.custom.d.ts │ │ ├── lib.gecko.tweaks.d.ts │ │ ├── lib.gecko.xpidl.d.ts │ │ └── subs │ │ ├── AppConstants.sys.d.mts │ │ ├── FeatureManifest.sys.d.mts │ │ ├── PromiseWorker.d.mts │ │ ├── PromiseWorker.d.ts │ │ ├── RFPTargetConstants.sys.d.mts │ │ ├── Readerable.sys.d.mts │ │ └── schema.sys.d.mts ├── shared │ ├── custom-shortcut-key │ │ ├── commands.ts │ │ ├── defines.ts │ │ ├── i18n.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── deno.json │ ├── package.json │ └── tsconfig.json ├── solid-xul │ ├── deno.json │ ├── index.ts │ ├── jsx-runtime.d.ts │ ├── package.json │ └── tsconfig.json └── vite-plugin-gen-jarmn │ ├── deno.json │ ├── gen_jarmanifest.ts │ └── plugin.ts ├── moz.build ├── package.json ├── static └── gecko │ └── config │ ├── .gitignore │ ├── README.md │ └── moz.configure └── tools ├── feles-build.ts ├── patches ├── browser-chrome-browser-content-browser-browser-init.patch ├── browser-chrome-browser-content-browser-tabbrowser-tabbrowser.patch ├── browser-modules-AsyncTabSwitcher.sys.patch ├── browser-modules-BrowserGlue.sys.patch ├── browser-modules-CustomizableUI.sys.patch.temp ├── browser-modules-UrlbarController.sys.patch ├── browser-modules-sessionstore-SessionSaver.sys.patch ├── browser-modules-sessionstore-SessionStore.sys.patch ├── browser-modules-sessionstore-TabState.sys.patch ├── modules-AppProvidedSearchEngine.sys.patch.temp └── modules-SearchService.sys.patch ├── scripts ├── gen-uuid.ts └── xhtml.ts └── src ├── browser_launcher.ts ├── builder.ts ├── defines.ts ├── dev_env_manager.ts ├── dev_server.ts ├── initializer.ts ├── injector.ts ├── patcher.ts ├── symlinker.ts ├── update.ts └── utils.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/assets/readme/Link2RuntimeRepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/assets/readme/Link2RuntimeRepo.svg -------------------------------------------------------------------------------- /.github/assets/readme/logo_with_wordmark_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/assets/readme/logo_with_wordmark_dark.svg -------------------------------------------------------------------------------- /.github/assets/readme/logo_with_wordmark_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/assets/readme/logo_with_wordmark_light.svg -------------------------------------------------------------------------------- /.github/assets/readme/noraneko.structure.dark.excalidraw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/assets/readme/noraneko.structure.dark.excalidraw.svg -------------------------------------------------------------------------------- /.github/assets/readme/noraneko.structure.light.excalidraw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/assets/readme/noraneko.structure.light.excalidraw.svg -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.github/workflows/package_and_publish_alpha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/workflows/package_and_publish_alpha.yml -------------------------------------------------------------------------------- /.github/workflows/publish_alpha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.github/workflows/publish_alpha.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @jsr:registry=https://npm.jsr.io -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/README.md -------------------------------------------------------------------------------- /bridge/loader-features/.gitignore: -------------------------------------------------------------------------------- 1 | link-features-chrome 2 | link-i18n -------------------------------------------------------------------------------- /bridge/loader-features/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-features/deno.json -------------------------------------------------------------------------------- /bridge/loader-features/loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-features/loader/index.ts -------------------------------------------------------------------------------- /bridge/loader-features/loader/modules-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-features/loader/modules-hooks.ts -------------------------------------------------------------------------------- /bridge/loader-features/loader/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-features/loader/modules.ts -------------------------------------------------------------------------------- /bridge/loader-features/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-features/tsconfig.json -------------------------------------------------------------------------------- /bridge/loader-features/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-features/vite.config.ts -------------------------------------------------------------------------------- /bridge/loader-modules/.gitignore: -------------------------------------------------------------------------------- 1 | link-modules -------------------------------------------------------------------------------- /bridge/loader-modules/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-modules/deno.json -------------------------------------------------------------------------------- /bridge/loader-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-modules/package.json -------------------------------------------------------------------------------- /bridge/loader-modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-modules/tsconfig.json -------------------------------------------------------------------------------- /bridge/loader-modules/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/loader-modules/tsdown.config.ts -------------------------------------------------------------------------------- /bridge/startup/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/startup/deno.json -------------------------------------------------------------------------------- /bridge/startup/src/about-newtab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/startup/src/about-newtab.ts -------------------------------------------------------------------------------- /bridge/startup/src/about-preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/startup/src/about-preferences.ts -------------------------------------------------------------------------------- /bridge/startup/src/chrome_root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/startup/src/chrome_root.ts -------------------------------------------------------------------------------- /bridge/startup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/startup/tsconfig.json -------------------------------------------------------------------------------- /bridge/startup/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/bridge/startup/tsdown.config.ts -------------------------------------------------------------------------------- /browser-features/chrome/@types/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/@types/i18next.d.ts -------------------------------------------------------------------------------- /browser-features/chrome/@types/tab-rename.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/@types/tab-rename.d.ts -------------------------------------------------------------------------------- /browser-features/chrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/README.md -------------------------------------------------------------------------------- /browser-features/chrome/common/browser-share-mode/browser-share-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/browser-share-mode/browser-share-mode.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/browser-share-mode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/browser-share-mode/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/browser-share-mode/share-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/browser-share-mode/share-mode.css -------------------------------------------------------------------------------- /browser-features/chrome/common/browser-tab-color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/browser-tab-color/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/browser-tab-color/tabcolor-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/browser-tab-color/tabcolor-manager.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/context-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/context-menu/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/mod.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/reverse-sidebar-position/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/reverse-sidebar-position/README.md -------------------------------------------------------------------------------- /browser-features/chrome/common/reverse-sidebar-position/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/reverse-sidebar-position/icon.css -------------------------------------------------------------------------------- /browser-features/chrome/common/reverse-sidebar-position/index.ts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | 3 | export function init() { 4 | //new ReverseSidebarPosition(); 5 | } 6 | -------------------------------------------------------------------------------- /browser-features/chrome/common/reverse-sidebar-position/reverse-sidebar-position.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/reverse-sidebar-position/reverse-sidebar-position.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/data/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/data/migration.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/icons/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/icons/notes.svg -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/panel/browsers/chrome-site-browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/panel/browsers/chrome-site-browser.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/panel/browsers/extension-site-browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/panel/browsers/extension-site-browser.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/panel/browsers/web-site-browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/panel/browsers/web-site-browser.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/panel/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/panel/panel-navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/panel/panel-navigator.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/panel/website-panel-window-child.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/panel/website-panel-window-child.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/panel/website-panel-window-parent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/panel/website-panel-window-parent.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/browser-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/browser-box.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/floating-splitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/floating-splitter.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/floating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/floating.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/panel-sidebar-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/panel-sidebar-modal.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/panel-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/panel-sidebar.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-contextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-contextMenu.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-header.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-panel-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-panel-button.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-selectbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-selectbox.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-splitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar-splitter.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/components/sidebar.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/styles/modal-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/styles/modal-style.css -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar-addon-panel/ui/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar-addon-panel/ui/styles/style.css -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/data.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/extension-panels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/extension-panels.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/static-panels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/static-panels.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/utils/default-prerf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/utils/default-prerf.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/utils/favicon-getter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/utils/favicon-getter.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/utils/panel-sidebar-static-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/utils/panel-sidebar-static-names.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/utils/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/utils/type.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/utils/userContextColor-getter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/utils/userContextColor-getter.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/core/utils/webRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/core/utils/webRequest.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/sidebar/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/statusbar/README.md: -------------------------------------------------------------------------------- 1 | 4 | 5 | # StatusBar 6 | -------------------------------------------------------------------------------- /browser-features/chrome/common/statusbar/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/statusbar/context-menu.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/statusbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/statusbar/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/statusbar/statusbar-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/statusbar/statusbar-manager.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/statusbar/statusbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/statusbar/statusbar.css -------------------------------------------------------------------------------- /browser-features/chrome/common/statusbar/statusbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/statusbar/statusbar.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/tab-rename/IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/tab-rename/IMPLEMENTATION.md -------------------------------------------------------------------------------- /browser-features/chrome/common/tab-rename/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/tab-rename/TESTING.md -------------------------------------------------------------------------------- /browser-features/chrome/common/tab-rename/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/tab-rename/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/tab-rename/tab-rename-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/tab-rename/tab-rename-manager.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/tab-rename/tab-rename.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/tab-rename/tab-rename.css -------------------------------------------------------------------------------- /browser-features/chrome/common/undo-closed-tab/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/undo-closed-tab/icon.css -------------------------------------------------------------------------------- /browser-features/chrome/common/undo-closed-tab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/undo-closed-tab/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/common/undo-closed-tab/styleElem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/undo-closed-tab/styleElem.tsx -------------------------------------------------------------------------------- /browser-features/chrome/common/update-refresh-cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/common/update-refresh-cache/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/deno.json -------------------------------------------------------------------------------- /browser-features/chrome/example/aaa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/example/aaa.ts -------------------------------------------------------------------------------- /browser-features/chrome/example/counter/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/example/counter/Counter.tsx -------------------------------------------------------------------------------- /browser-features/chrome/example/counter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/example/counter/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/experiment/csk/csk/category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/experiment/csk/csk/category.tsx -------------------------------------------------------------------------------- /browser-features/chrome/experiment/csk/csk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/experiment/csk/csk/index.tsx -------------------------------------------------------------------------------- /browser-features/chrome/experiment/csk/csk/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/experiment/csk/csk/page.tsx -------------------------------------------------------------------------------- /browser-features/chrome/experiment/csk/csk/setkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/experiment/csk/csk/setkey.ts -------------------------------------------------------------------------------- /browser-features/chrome/experiment/csk/hashchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/experiment/csk/hashchange.ts -------------------------------------------------------------------------------- /browser-features/chrome/experiment/csk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/experiment/csk/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/experiment/hmr/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/experiment/hmr/counter.tsx -------------------------------------------------------------------------------- /browser-features/chrome/experiment/hmr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/experiment/hmr/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/static/downloadbar/README.md: -------------------------------------------------------------------------------- 1 | 4 | 5 | # StatusBar 6 | -------------------------------------------------------------------------------- /browser-features/chrome/static/downloadbar/downloadbar-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/static/downloadbar/downloadbar-manager.tsx -------------------------------------------------------------------------------- /browser-features/chrome/static/downloadbar/downloadbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/static/downloadbar/downloadbar.css -------------------------------------------------------------------------------- /browser-features/chrome/static/downloadbar/downloadbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/static/downloadbar/downloadbar.tsx -------------------------------------------------------------------------------- /browser-features/chrome/static/downloadbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/static/downloadbar/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/static/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/static/mod.ts -------------------------------------------------------------------------------- /browser-features/chrome/static/overrides/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/static/overrides/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/static/overrides/overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/static/overrides/overrides.ts -------------------------------------------------------------------------------- /browser-features/chrome/static/prefs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/static/prefs/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/test/index.ts -------------------------------------------------------------------------------- /browser-features/chrome/test/unit/onModuleLoaded.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/test/unit/onModuleLoaded.test.ts -------------------------------------------------------------------------------- /browser-features/chrome/utils/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/utils/base.ts -------------------------------------------------------------------------------- /browser-features/chrome/utils/browser-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/utils/browser-action.tsx -------------------------------------------------------------------------------- /browser-features/chrome/utils/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/utils/context-menu.tsx -------------------------------------------------------------------------------- /browser-features/chrome/utils/decorator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/utils/decorator.d.ts -------------------------------------------------------------------------------- /browser-features/chrome/utils/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/utils/modal/index.tsx -------------------------------------------------------------------------------- /browser-features/chrome/utils/modal/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/utils/modal/styles.css -------------------------------------------------------------------------------- /browser-features/chrome/utils/stylesheet-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/chrome/utils/stylesheet-service.ts -------------------------------------------------------------------------------- /browser-features/modules/.oxlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/.oxlintrc.json -------------------------------------------------------------------------------- /browser-features/modules/actors/NRAboutNewTabChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRAboutNewTabChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRAboutPreferencesChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRAboutPreferencesChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRAppConstantsChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRAppConstantsChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRAppConstantsParent.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRAppConstantsParent.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRProgressiveWebAppChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRProgressiveWebAppChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRProgressiveWebAppParent.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRProgressiveWebAppParent.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRPwaManagerChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRPwaManagerChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRPwaManagerParent.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRPwaManagerParent.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRRestartBrowserChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRRestartBrowserChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRRestartBrowserParent.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRRestartBrowserParent.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRSettingsChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRSettingsChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRSettingsParent.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRSettingsParent.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRSyncManagerChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRSyncManagerChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRSyncManagerParent.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRSyncManagerParent.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRTabManagerChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRTabManagerChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRTabManagerParent.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRTabManagerParent.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRTestChild.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRTestChild.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/actors/NRTestParent.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/actors/NRTestParent.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/common/NRTestTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/common/NRTestTypes.ts -------------------------------------------------------------------------------- /browser-features/modules/common/defines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/common/defines.ts -------------------------------------------------------------------------------- /browser-features/modules/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/deno.json -------------------------------------------------------------------------------- /browser-features/modules/modules/BrowserGlue.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/modules/BrowserGlue.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/modules/NoranekoConstants.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/modules/NoranekoConstants.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/modules/NoranekoStartup.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/modules/NoranekoStartup.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/modules/pwa/DataStore.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/modules/pwa/DataStore.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/modules/pwa/ImageTools.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/modules/pwa/ImageTools.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/modules/pwa/SsbCommandLineHandler.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/modules/pwa/SsbCommandLineHandler.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/modules/pwa/supports/Windows.sys.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/modules/pwa/supports/Windows.sys.mts -------------------------------------------------------------------------------- /browser-features/modules/modules/pwa/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/modules/modules/pwa/type.ts -------------------------------------------------------------------------------- /browser-features/pages-newtab/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/pages-newtab/deno.json -------------------------------------------------------------------------------- /browser-features/pages-newtab/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/pages-newtab/index.html -------------------------------------------------------------------------------- /browser-features/pages-newtab/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/pages-newtab/src/main.ts -------------------------------------------------------------------------------- /browser-features/pages-newtab/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/pages-newtab/src/style.css -------------------------------------------------------------------------------- /browser-features/pages-newtab/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/pages-newtab/vite.config.ts -------------------------------------------------------------------------------- /browser-features/skin/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/deno.json -------------------------------------------------------------------------------- /browser-features/skin/fluerial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/README.md -------------------------------------------------------------------------------- /browser-features/skin/fluerial/css/fluerial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/css/fluerial.css -------------------------------------------------------------------------------- /browser-features/skin/fluerial/icons/add_FILL0_wght700_GRAD200_opsz48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/icons/add_FILL0_wght700_GRAD200_opsz48.svg -------------------------------------------------------------------------------- /browser-features/skin/fluerial/icons/arrow_back_FILL0_wght700_GRAD200_opsz48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/icons/arrow_back_FILL0_wght700_GRAD200_opsz48.svg -------------------------------------------------------------------------------- /browser-features/skin/fluerial/icons/arrow_forward_FILL0_wght700_GRAD200_opsz48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/icons/arrow_forward_FILL0_wght700_GRAD200_opsz48.svg -------------------------------------------------------------------------------- /browser-features/skin/fluerial/icons/close_FILL0_wght700_GRAD200_opsz48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/icons/close_FILL0_wght700_GRAD200_opsz48.svg -------------------------------------------------------------------------------- /browser-features/skin/fluerial/icons/expand_more_FILL0_wght700_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/icons/expand_more_FILL0_wght700_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /browser-features/skin/fluerial/icons/extension_FILL0_wght700_GRAD200_opsz48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/icons/extension_FILL0_wght700_GRAD200_opsz48.svg -------------------------------------------------------------------------------- /browser-features/skin/fluerial/icons/more_vert_FILL0_wght700_GRAD200_opsz48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/icons/more_vert_FILL0_wght700_GRAD200_opsz48.svg -------------------------------------------------------------------------------- /browser-features/skin/fluerial/icons/refresh_FILL0_wght700_GRAD200_opsz48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/fluerial/icons/refresh_FILL0_wght700_GRAD200_opsz48.svg -------------------------------------------------------------------------------- /browser-features/skin/jar.mn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/jar.mn -------------------------------------------------------------------------------- /browser-features/skin/lepton/LEPTON: -------------------------------------------------------------------------------- 1 | [Info] 2 | Ver=v8.6.2 3 | Branch=master 4 | -------------------------------------------------------------------------------- /browser-features/skin/lepton/css/leptonChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/css/leptonChrome.css -------------------------------------------------------------------------------- /browser-features/skin/lepton/css/leptonContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/css/leptonContent.css -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/add-device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/add-device.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/addons-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/addons-logo.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/arrow-between-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/arrow-between-down.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/arrow-repeat-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/arrow-repeat-all.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/arrow-sort-down-lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/arrow-sort-down-lines.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/arrow-swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/arrow-swap.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/auto-fit-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/auto-fit-width.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/blank.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/blue-berror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/blue-berror.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/book-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/book-add.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/book.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/bookmark-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/bookmark-multiple.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/bookmarks-toolbar-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/bookmarks-toolbar-alt.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/bookmarks-toolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/bookmarks-toolbar.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/bookmarksMenu-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/bookmarksMenu-open.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/bookmarksMenu-open2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/bookmarksMenu-open2.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/bookmarksToolbar-open-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/bookmarksToolbar-open-alt.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/bookmarksToolbar-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/bookmarksToolbar-open.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/broom.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/bug.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/calendar-agenda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/calendar-agenda.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/characterEncoding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/characterEncoding.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/checkmark-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/checkmark-circle.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/code.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/command-console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/command-console.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/command-eyedropper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/command-eyedropper.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/command-frames.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/command-frames.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/command-pick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/command-pick.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/command-responsivemode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/command-responsivemode.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/container-openin-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/container-openin-16.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/content-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/content-view.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/copy-select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/copy-select.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/dashboard.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/datarestore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/datarestore.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/datastore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/datastore.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/developer.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/device-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/device-desktop.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/device-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/device-phone.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/device-tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/device-tablet.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/device-tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/device-tv.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/device-vr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/device-vr.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/dismiss-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/dismiss-filled.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/document-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/document-css.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/document-endnote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/document-endnote.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/document-landscape-split-hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/document-landscape-split-hint.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/document-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/document-search.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/drawer-arrow-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/drawer-arrow-download.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/edit-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/edit-copy.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/edit-cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/edit-cut.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/edit-paste-go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/edit-paste-go.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/edit-paste-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/edit-paste-search.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/edit-paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/edit-paste.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/enter-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/enter-fullscreen.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/eraser.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/error-connection-failure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/error-connection-failure.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/error-malformed-url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/error-malformed-url.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/error-server-not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/error-server-not-found.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/error-session-restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/error-session-restore.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/error-tab-crashed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/error-tab-crashed.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/exit-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/exit-fullscreen.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/eye-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/eye-hide.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/eye-show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/eye-show.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/eye-tracking-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/eye-tracking-off.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/filter-dismiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/filter-dismiss.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/filter-reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/filter-reload.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/firefox-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/firefox-view.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/flame.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/fluid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/fluid.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/folder-globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/folder-globe.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/folder-open.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/folder.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/forget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/forget.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/highlight.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/history-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/history-reverse.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/horizon-night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/horizon-night.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/horizon-sunrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/horizon-sunrise.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/identity-icons-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/identity-icons-brand.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/image-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/image-add.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/image-alt-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/image-alt-text.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/image-arrow-counterclockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/image-arrow-counterclockwise.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/image-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/image-copy.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/image.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/import-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/import-export.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/ion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/ion.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/key-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/key-multiple.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/link-no-tracking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/link-no-tracking.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/link-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/link-square.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/link.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/lock-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/lock-closed.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/mail-inbox-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/mail-inbox-all.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/mail-inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/mail-inbox.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/mail.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/menu-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/menu-check.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/merge.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/movetowindow-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/movetowindow-16.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/new-tab-forward-photon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/new-tab-forward-photon.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/new-tab-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/new-tab-forward.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/new-tab-multiple-photon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/new-tab-multiple-photon.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/new-tab-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/new-tab-multiple.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/new-tab-photon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/new-tab-photon.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/new-tab-skip-forward-photon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/new-tab-skip-forward-photon.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/new-tab-skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/new-tab-skip-forward.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/new-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/new-tab.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/no-search-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/no-search-results.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/panelarrow-vertical-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/panelarrow-vertical-reverse.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/panelarrow-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/panelarrow-vertical.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/password-hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/password-hide.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/password.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/paste-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/paste-text.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/paste-url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/paste-url.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/paste.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/performance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/performance.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/pin-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/pin-tab.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/play.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/plug-disconnected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/plug-disconnected.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/pocket-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/pocket-outline.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/private-favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/private-favicon.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/pulse-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/pulse-square.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/pwa-install.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/pwa-install.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/pwa-launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/pwa-launch.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/pwa-manage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/pwa-manage.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/pwa-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/pwa-remove.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/quit.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/redo.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/refresh-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/refresh-cw.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/relay-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/relay-logo.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/reload-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/reload-auto.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/reload.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/resize-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/resize-image.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/resize.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/restore-session.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/restore-session.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/screenshot-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/screenshot-1.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/screenshot.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/select-all-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/select-all-on.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/send-to-device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/send-to-device.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/send.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/share.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/shield-task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/shield-task.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/sign-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/sign-out.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/sort.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/star-line-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/star-line-horizontal.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/synced-tabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/synced-tabs.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-australis-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-australis-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-australis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-australis.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-chrome-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-chrome-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-chrome.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-chromeLegacy-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-chromeLegacy-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-chromeLegacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-chromeLegacy.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-edge-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-edge-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-edge.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-wave-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-wave-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left-wave.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-left.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-australis-cilpped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-australis-cilpped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-australis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-australis.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-chrome-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-chrome-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-chrome.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-chromeLegacy-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-chromeLegacy-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-chromeLegacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-chromeLegacy.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-edge-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-edge-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-edge.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-wave-clipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-wave-clipped.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right-wave.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-bottom-corner-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-bottom-corner-right.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-copy-photon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-copy-photon.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-copy.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-desktop-multiple-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-desktop-multiple-bottom.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-desktop-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-desktop-multiple.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-multiple.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-photon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-photon.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-unload-photon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-unload-photon.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab-unload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab-unload.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tab.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tag-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tag-open.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tag.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/text-direction-horizontal-ltr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/text-direction-horizontal-ltr.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/text-number-format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/text-number-format.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/text-proofing-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/text-proofing-tools.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/text-sort-ascending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/text-sort-ascending.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/time-picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/time-picker.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/timer10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/timer10.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/tool-accessibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/tool-accessibility.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/toolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/toolbar.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/toolbarButton-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/toolbarButton-download.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/toolbarButton-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/toolbarButton-upload.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/toolbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/toolbox.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/translations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/translations.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/undo.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/unpin-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/unpin-tab.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/vertical-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/vertical-line.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/video-clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/video-clip.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/video-snapshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/video-snapshot.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/video.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/weather-snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/weather-snowflake.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/welcome-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/welcome-back.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/whatsnew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/whatsnew.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/window-dev-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/window-dev-tools.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/window.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/icons/wrench-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/icons/wrench-filled.svg -------------------------------------------------------------------------------- /browser-features/skin/lepton/userjs/lepton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/userjs/lepton.js -------------------------------------------------------------------------------- /browser-features/skin/lepton/userjs/photon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/userjs/photon.js -------------------------------------------------------------------------------- /browser-features/skin/lepton/userjs/protonfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/lepton/userjs/protonfix.js -------------------------------------------------------------------------------- /browser-features/skin/moz.build: -------------------------------------------------------------------------------- 1 | JAR_MANIFESTS += ["jar.mn"] -------------------------------------------------------------------------------- /browser-features/skin/noraneko/cat_hand_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/noraneko/cat_hand_black.png -------------------------------------------------------------------------------- /browser-features/skin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/browser-features/skin/package.json -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/deno.json -------------------------------------------------------------------------------- /deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/deno.lock -------------------------------------------------------------------------------- /i18n/config-browser-chrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/i18n/config-browser-chrome.ts -------------------------------------------------------------------------------- /i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/i18n/config.ts -------------------------------------------------------------------------------- /i18n/default.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/i18n/default.d.ts -------------------------------------------------------------------------------- /i18n/en-US/_meta.toml: -------------------------------------------------------------------------------- 1 | fallback-language = ["dev"] 2 | -------------------------------------------------------------------------------- /i18n/en-US/browser-chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/i18n/en-US/browser-chrome.json -------------------------------------------------------------------------------- /i18n/en-US/default.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /i18n/ja-JP-x-kansai/_meta.toml: -------------------------------------------------------------------------------- 1 | fallback-language = ["ja-JP"] 2 | -------------------------------------------------------------------------------- /i18n/ja-JP-x-kansai/browser-chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/i18n/ja-JP-x-kansai/browser-chrome.json -------------------------------------------------------------------------------- /i18n/ja-JP-x-kansai/default.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /i18n/ja-JP/_meta.toml: -------------------------------------------------------------------------------- 1 | fallback-language = ["en-US"] 2 | -------------------------------------------------------------------------------- /i18n/ja-JP/browser-chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/i18n/ja-JP/browser-chrome.json -------------------------------------------------------------------------------- /i18n/ja-JP/default.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/@types/gecko/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/deno.json -------------------------------------------------------------------------------- /libs/@types/gecko/generated/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/README -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.darwin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.darwin.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.dom.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.glean.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.glean.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.linux.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.linux.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.modules.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.nsresult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.nsresult.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.services.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.services.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.win32.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.win32.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/lib.gecko.xpcom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/lib.gecko.xpcom.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/generated/tspaths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/generated/tspaths.json -------------------------------------------------------------------------------- /libs/@types/gecko/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/index.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/lib.gecko.custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/lib.gecko.custom.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/lib.gecko.tweaks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/lib.gecko.tweaks.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/lib.gecko.xpidl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/lib.gecko.xpidl.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/subs/AppConstants.sys.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/subs/AppConstants.sys.d.mts -------------------------------------------------------------------------------- /libs/@types/gecko/subs/FeatureManifest.sys.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/subs/FeatureManifest.sys.d.mts -------------------------------------------------------------------------------- /libs/@types/gecko/subs/PromiseWorker.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/subs/PromiseWorker.d.mts -------------------------------------------------------------------------------- /libs/@types/gecko/subs/PromiseWorker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/subs/PromiseWorker.d.ts -------------------------------------------------------------------------------- /libs/@types/gecko/subs/RFPTargetConstants.sys.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/subs/RFPTargetConstants.sys.d.mts -------------------------------------------------------------------------------- /libs/@types/gecko/subs/Readerable.sys.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/subs/Readerable.sys.d.mts -------------------------------------------------------------------------------- /libs/@types/gecko/subs/schema.sys.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/@types/gecko/subs/schema.sys.d.mts -------------------------------------------------------------------------------- /libs/shared/custom-shortcut-key/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/shared/custom-shortcut-key/commands.ts -------------------------------------------------------------------------------- /libs/shared/custom-shortcut-key/defines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/shared/custom-shortcut-key/defines.ts -------------------------------------------------------------------------------- /libs/shared/custom-shortcut-key/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/shared/custom-shortcut-key/i18n.ts -------------------------------------------------------------------------------- /libs/shared/custom-shortcut-key/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/shared/custom-shortcut-key/index.ts -------------------------------------------------------------------------------- /libs/shared/custom-shortcut-key/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/shared/custom-shortcut-key/utils.ts -------------------------------------------------------------------------------- /libs/shared/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/shared/deno.json -------------------------------------------------------------------------------- /libs/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/shared/package.json -------------------------------------------------------------------------------- /libs/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/shared/tsconfig.json -------------------------------------------------------------------------------- /libs/solid-xul/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/solid-xul/deno.json -------------------------------------------------------------------------------- /libs/solid-xul/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/solid-xul/index.ts -------------------------------------------------------------------------------- /libs/solid-xul/jsx-runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/solid-xul/jsx-runtime.d.ts -------------------------------------------------------------------------------- /libs/solid-xul/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/solid-xul/package.json -------------------------------------------------------------------------------- /libs/solid-xul/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/solid-xul/tsconfig.json -------------------------------------------------------------------------------- /libs/vite-plugin-gen-jarmn/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/vite-plugin-gen-jarmn/deno.json -------------------------------------------------------------------------------- /libs/vite-plugin-gen-jarmn/gen_jarmanifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/vite-plugin-gen-jarmn/gen_jarmanifest.ts -------------------------------------------------------------------------------- /libs/vite-plugin-gen-jarmn/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/libs/vite-plugin-gen-jarmn/plugin.ts -------------------------------------------------------------------------------- /moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/moz.build -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/package.json -------------------------------------------------------------------------------- /static/gecko/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/static/gecko/config/.gitignore -------------------------------------------------------------------------------- /static/gecko/config/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/gecko/config/moz.configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/static/gecko/config/moz.configure -------------------------------------------------------------------------------- /tools/feles-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/feles-build.ts -------------------------------------------------------------------------------- /tools/patches/browser-chrome-browser-content-browser-browser-init.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-chrome-browser-content-browser-browser-init.patch -------------------------------------------------------------------------------- /tools/patches/browser-chrome-browser-content-browser-tabbrowser-tabbrowser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-chrome-browser-content-browser-tabbrowser-tabbrowser.patch -------------------------------------------------------------------------------- /tools/patches/browser-modules-AsyncTabSwitcher.sys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-modules-AsyncTabSwitcher.sys.patch -------------------------------------------------------------------------------- /tools/patches/browser-modules-BrowserGlue.sys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-modules-BrowserGlue.sys.patch -------------------------------------------------------------------------------- /tools/patches/browser-modules-CustomizableUI.sys.patch.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-modules-CustomizableUI.sys.patch.temp -------------------------------------------------------------------------------- /tools/patches/browser-modules-UrlbarController.sys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-modules-UrlbarController.sys.patch -------------------------------------------------------------------------------- /tools/patches/browser-modules-sessionstore-SessionSaver.sys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-modules-sessionstore-SessionSaver.sys.patch -------------------------------------------------------------------------------- /tools/patches/browser-modules-sessionstore-SessionStore.sys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-modules-sessionstore-SessionStore.sys.patch -------------------------------------------------------------------------------- /tools/patches/browser-modules-sessionstore-TabState.sys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/browser-modules-sessionstore-TabState.sys.patch -------------------------------------------------------------------------------- /tools/patches/modules-AppProvidedSearchEngine.sys.patch.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/modules-AppProvidedSearchEngine.sys.patch.temp -------------------------------------------------------------------------------- /tools/patches/modules-SearchService.sys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/patches/modules-SearchService.sys.patch -------------------------------------------------------------------------------- /tools/scripts/gen-uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/scripts/gen-uuid.ts -------------------------------------------------------------------------------- /tools/scripts/xhtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/scripts/xhtml.ts -------------------------------------------------------------------------------- /tools/src/browser_launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/browser_launcher.ts -------------------------------------------------------------------------------- /tools/src/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/builder.ts -------------------------------------------------------------------------------- /tools/src/defines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/defines.ts -------------------------------------------------------------------------------- /tools/src/dev_env_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/dev_env_manager.ts -------------------------------------------------------------------------------- /tools/src/dev_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/dev_server.ts -------------------------------------------------------------------------------- /tools/src/initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/initializer.ts -------------------------------------------------------------------------------- /tools/src/injector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/injector.ts -------------------------------------------------------------------------------- /tools/src/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/patcher.ts -------------------------------------------------------------------------------- /tools/src/symlinker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/symlinker.ts -------------------------------------------------------------------------------- /tools/src/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/update.ts -------------------------------------------------------------------------------- /tools/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f3liz-dev/noraneko/HEAD/tools/src/utils.ts --------------------------------------------------------------------------------