├── .codecov.yml
├── .commitlintrc.yml
├── .gitattributes
├── .github
├── CODEOWNERS
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── bug_report.yml
│ ├── config.yml
│ └── feature_request.md
├── actions
│ └── setup
│ │ └── action.yml
├── dependabot.yml
├── pull_request_template.md
└── workflows
│ ├── notify-unreleased-commits.yml
│ ├── pkg.pr.new.yml
│ ├── pr-closed.yml
│ ├── pr-title.yml
│ ├── publish-docs.yml
│ ├── release.yml
│ ├── sync-releases.yml
│ ├── update-browser-package.yml
│ ├── validate.yml
│ └── vhs.yml
├── .gitignore
├── .markdownlint.json
├── .markdownlintignore
├── .prettierignore
├── .prettierrc.yml
├── .vscode
├── extensions.json
└── settings.json
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── SECURITY.md
├── docs
├── .vitepress
│ ├── Dockerfile
│ ├── components
│ │ ├── BlogHome.vue
│ │ ├── BlogLayout.vue
│ │ ├── BlogPostPreview.vue
│ │ ├── EntrypointPatterns.vue
│ │ ├── ExampleSearch.vue
│ │ ├── ExampleSearchFilterByItem.vue
│ │ ├── ExampleSearchResult.vue
│ │ ├── Icon.vue
│ │ └── UsingWxtSection.vue
│ ├── composables
│ │ ├── useBlogDate.ts
│ │ └── useListExtensionDetails.ts
│ ├── config.ts
│ ├── loaders
│ │ ├── blog.data.ts
│ │ └── cli.data.ts
│ ├── theme
│ │ ├── custom.css
│ │ └── index.ts
│ └── utils
│ │ ├── head.ts
│ │ ├── menus.ts
│ │ └── types.ts
├── analytics.md
├── api
│ └── cli
│ │ ├── wxt-build.md
│ │ ├── wxt-clean.md
│ │ ├── wxt-init.md
│ │ ├── wxt-prepare.md
│ │ ├── wxt-submit-init.md
│ │ ├── wxt-submit.md
│ │ ├── wxt-zip.md
│ │ └── wxt.md
├── assets
│ ├── cli-output.png
│ └── init-demo.gif
├── auto-icons.md
├── blog.md
├── blog
│ ├── .drafts
│ │ └── 2024-10-19-real-world-messaging.md
│ └── 2024-12-06-using-imports-module.md
├── examples.md
├── guide
│ ├── essentials
│ │ ├── assets.md
│ │ ├── config
│ │ │ ├── auto-imports.md
│ │ │ ├── browser-startup.md
│ │ │ ├── build-mode.md
│ │ │ ├── entrypoint-loaders.md
│ │ │ ├── environment-variables.md
│ │ │ ├── hooks.md
│ │ │ ├── manifest.md
│ │ │ ├── runtime.md
│ │ │ ├── typescript.md
│ │ │ └── vite.md
│ │ ├── content-scripts.md
│ │ ├── e2e-testing.md
│ │ ├── entrypoints.md
│ │ ├── es-modules.md
│ │ ├── extension-apis.md
│ │ ├── frontend-frameworks.md
│ │ ├── i18n.md
│ │ ├── messaging.md
│ │ ├── project-structure.md
│ │ ├── publishing.md
│ │ ├── remote-code.md
│ │ ├── scripting.md
│ │ ├── storage.md
│ │ ├── target-different-browsers.md
│ │ ├── testing-updates.md
│ │ ├── unit-testing.md
│ │ └── wxt-modules.md
│ ├── installation.md
│ ├── introduction.md
│ └── resources
│ │ ├── community.md
│ │ ├── compare.md
│ │ ├── faq.md
│ │ ├── how-wxt-works.md
│ │ ├── migrate.md
│ │ └── upgrading.md
├── i18n.md
├── index.md
├── public
│ ├── _redirects
│ ├── content-script-ui-alignment.png
│ ├── content-script-ui-append.png
│ ├── content-script-ui-position.png
│ ├── favicon.ico
│ ├── hero-logo.svg
│ ├── logo.svg
│ ├── robots.txt
│ └── social-preview.png
├── runner.md
├── storage.md
├── tapes
│ └── init-demo.tape
├── typedoc.json
└── unocss.md
├── package.json
├── packages
├── analytics
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── app.config.ts
│ ├── build.config.ts
│ ├── entrypoints
│ │ └── popup
│ │ │ ├── index.html
│ │ │ └── main.ts
│ ├── modules
│ │ └── analytics
│ │ │ ├── background-plugin.ts
│ │ │ ├── client.ts
│ │ │ ├── index.ts
│ │ │ ├── providers
│ │ │ ├── google-analytics-4.ts
│ │ │ └── umami.ts
│ │ │ └── types.ts
│ ├── package.json
│ ├── public
│ │ └── .keep
│ ├── tsconfig.json
│ └── wxt.config.ts
├── auto-icons
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ └── index.ts
│ └── tsconfig.json
├── browser
│ ├── README.md
│ ├── package.json
│ ├── scripts
│ │ └── generate.ts
│ ├── src
│ │ ├── __tests__
│ │ │ └── index.test.ts
│ │ ├── gen
│ │ │ ├── chrome-cast
│ │ │ │ └── index.d.ts
│ │ │ ├── har-format
│ │ │ │ └── index.d.ts
│ │ │ └── index.d.ts
│ │ ├── index.d.ts
│ │ └── index.mjs
│ ├── templates
│ │ └── package.json
│ └── tsconfig.json
├── i18n
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── __tests__
│ │ │ ├── build.test.ts
│ │ │ ├── index.test.ts
│ │ │ ├── types.test.ts
│ │ │ └── utils.test.ts
│ │ ├── build.ts
│ │ ├── index.ts
│ │ ├── module.ts
│ │ ├── supported-locales.ts
│ │ ├── types.ts
│ │ └── utils.ts
│ ├── tsconfig.json
│ └── vitest.config.ts
├── module-react
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── build.config.ts
│ ├── components
│ │ └── App.tsx
│ ├── entrypoints
│ │ ├── content
│ │ │ └── index.tsx
│ │ └── popup
│ │ │ ├── index.html
│ │ │ └── main.tsx
│ ├── modules
│ │ └── react.ts
│ ├── package.json
│ ├── public
│ │ └── .keep
│ └── tsconfig.json
├── module-solid
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── build.config.ts
│ ├── components
│ │ └── App.tsx
│ ├── entrypoints
│ │ ├── content
│ │ │ └── index.tsx
│ │ └── popup
│ │ │ ├── index.html
│ │ │ └── main.tsx
│ ├── modules
│ │ └── solid.ts
│ ├── package.json
│ ├── public
│ │ └── .keep
│ └── tsconfig.json
├── module-svelte
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ └── index.ts
│ └── tsconfig.json
├── module-vue
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ └── index.ts
│ └── tsconfig.json
├── runner
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── demo-extension
│ │ ├── background.js
│ │ └── manifest.json
│ ├── dev.ts
│ ├── package.json
│ ├── src
│ │ ├── __tests__
│ │ │ ├── install.test.ts
│ │ │ └── options.test.ts
│ │ ├── bidi.ts
│ │ ├── browser-paths.ts
│ │ ├── cdp.ts
│ │ ├── debug.ts
│ │ ├── index.ts
│ │ ├── install.ts
│ │ ├── options.ts
│ │ ├── promises.ts
│ │ ├── run.ts
│ │ └── web-socket.ts
│ ├── tsconfig.json
│ └── vitest.config.ts
├── storage
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── __tests__
│ │ │ └── index.test.ts
│ │ └── index.ts
│ ├── tsconfig.json
│ ├── vitest.config.ts
│ └── vitest.setup.ts
├── unocss
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ └── index.ts
│ └── tsconfig.json
├── webextension-polyfill
│ ├── README.md
│ ├── build.config.ts
│ ├── entrypoints
│ │ ├── content
│ │ │ └── index.ts
│ │ └── popup
│ │ │ ├── index.html
│ │ │ └── main.ts
│ ├── modules
│ │ └── webextension-polyfill
│ │ │ ├── browser.ts
│ │ │ └── index.ts
│ ├── package.json
│ ├── public
│ │ └── .keep
│ └── tsconfig.json
├── wxt-demo
│ ├── eslint.config.js
│ ├── modules
│ │ ├── auto-icons.ts
│ │ ├── example.ts
│ │ ├── i18n.ts
│ │ └── unocss.ts
│ ├── package.json
│ ├── src
│ │ ├── app.config.ts
│ │ ├── assets
│ │ │ └── icon.png
│ │ ├── entrypoints
│ │ │ ├── __tests__
│ │ │ │ └── background.test.ts
│ │ │ ├── automount.content
│ │ │ │ ├── index.ts
│ │ │ │ └── style.css
│ │ │ ├── background.ts
│ │ │ ├── example-2.scss
│ │ │ ├── example-tsx.content.tsx
│ │ │ ├── example.sandbox
│ │ │ │ └── index.html
│ │ │ ├── iframe-src
│ │ │ │ ├── index.html
│ │ │ │ └── main.ts
│ │ │ ├── iframe.content.ts
│ │ │ ├── injected.content
│ │ │ │ └── index.css
│ │ │ ├── location-change.content.ts
│ │ │ ├── main-world.content.ts
│ │ │ ├── options
│ │ │ │ ├── index.html
│ │ │ │ ├── main.ts
│ │ │ │ └── style.css
│ │ │ ├── popup.html
│ │ │ ├── sandbox.html
│ │ │ ├── sidepanel.html
│ │ │ ├── ui.content
│ │ │ │ ├── index.ts
│ │ │ │ ├── manual-style.css
│ │ │ │ └── style.css
│ │ │ └── unlisted.ts
│ │ ├── locales
│ │ │ └── en.yml
│ │ └── utils
│ │ │ └── logger.ts
│ ├── tsconfig.json
│ ├── vitest.config.ts
│ └── wxt.config.ts
└── wxt
│ ├── .oxlintignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── bin
│ ├── wxt-publish-extension.cjs
│ └── wxt.mjs
│ ├── build.config.ts
│ ├── e2e
│ ├── tests
│ │ ├── __snapshots__
│ │ │ └── auto-imports.test.ts.snap
│ │ ├── analysis.test.ts
│ │ ├── auto-imports.test.ts
│ │ ├── dev.test.ts
│ │ ├── hooks.test.ts
│ │ ├── init.test.ts
│ │ ├── manifest-content.test.ts
│ │ ├── modules.test.ts
│ │ ├── npm-packages.test.ts
│ │ ├── output-structure.test.ts
│ │ ├── react.test.ts
│ │ ├── remote-code.test.ts
│ │ ├── typescript-project.test.ts
│ │ ├── user-config.test.ts
│ │ └── zip.test.ts
│ └── utils.ts
│ ├── package.json
│ ├── src
│ ├── @types
│ │ ├── globals.d.ts
│ │ ├── modules.d.ts
│ │ └── project-types.d.ts
│ ├── __tests__
│ │ └── modules.test.ts
│ ├── browser.ts
│ ├── builtin-modules
│ │ ├── index.ts
│ │ └── unimport.ts
│ ├── cli
│ │ ├── __tests__
│ │ │ └── index.test.ts
│ │ ├── cli-utils.ts
│ │ ├── commands.ts
│ │ └── index.ts
│ ├── core
│ │ ├── build.ts
│ │ ├── builders
│ │ │ └── vite
│ │ │ │ ├── __tests__
│ │ │ │ └── fixtures
│ │ │ │ │ ├── module.ts
│ │ │ │ │ └── test.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── plugins
│ │ │ │ ├── __tests__
│ │ │ │ └── devHtmlPrerender.test.ts
│ │ │ │ ├── bundleAnalysis.ts
│ │ │ │ ├── cssEntrypoints.ts
│ │ │ │ ├── defineImportMeta.ts
│ │ │ │ ├── devHtmlPrerender.ts
│ │ │ │ ├── devServerGlobals.ts
│ │ │ │ ├── download.ts
│ │ │ │ ├── entrypointGroupGlobals.ts
│ │ │ │ ├── extensionApiMock.ts
│ │ │ │ ├── globals.ts
│ │ │ │ ├── iifeFooter.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── noopBackground.ts
│ │ │ │ ├── removeEntrypointMainFunction.ts
│ │ │ │ ├── resolveAppConfig.ts
│ │ │ │ ├── resolveVirtualModules.ts
│ │ │ │ ├── tsconfigPaths.ts
│ │ │ │ └── wxtPluginLoader.ts
│ │ ├── clean.ts
│ │ ├── create-server.ts
│ │ ├── define-config.ts
│ │ ├── define-web-ext-config.ts
│ │ ├── generate-wxt-dir.ts
│ │ ├── index.ts
│ │ ├── initialize.ts
│ │ ├── keyboard-shortcuts.ts
│ │ ├── package-managers
│ │ │ ├── __tests__
│ │ │ │ ├── bun.test.ts
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── simple-bun-project
│ │ │ │ │ │ ├── bun.lockb
│ │ │ │ │ │ └── package.json
│ │ │ │ │ ├── simple-npm-project
│ │ │ │ │ │ ├── package-lock.json
│ │ │ │ │ │ └── package.json
│ │ │ │ │ ├── simple-pnpm-project
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── pnpm-lock.yaml
│ │ │ │ │ └── simple-yarn-project
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── yarn.lock
│ │ │ │ ├── npm.test.ts
│ │ │ │ ├── pnpm.test.ts
│ │ │ │ └── yarn.test.ts
│ │ │ ├── bun.ts
│ │ │ ├── deno.ts
│ │ │ ├── index.ts
│ │ │ ├── npm.ts
│ │ │ ├── pnpm.ts
│ │ │ ├── types.ts
│ │ │ └── yarn.ts
│ │ ├── prepare.ts
│ │ ├── resolve-config.ts
│ │ ├── runners
│ │ │ ├── __tests__
│ │ │ │ └── index.test.ts
│ │ │ ├── index.ts
│ │ │ ├── manual.ts
│ │ │ ├── safari.ts
│ │ │ ├── web-ext.ts
│ │ │ └── wsl.ts
│ │ ├── utils
│ │ │ ├── __tests__
│ │ │ │ ├── arrays.test.ts
│ │ │ │ ├── content-scripts.test.ts
│ │ │ │ ├── content-security-policy.test.ts
│ │ │ │ ├── entrypoints.test.ts
│ │ │ │ ├── manifest.test.ts
│ │ │ │ ├── minimatch-multiple.test.ts
│ │ │ │ ├── number.test.ts
│ │ │ │ ├── package.test.ts
│ │ │ │ ├── paths.test.ts
│ │ │ │ ├── strings.test.ts
│ │ │ │ ├── transform.test.ts
│ │ │ │ ├── validation.test.ts
│ │ │ │ └── virtual-modules.test.ts
│ │ │ ├── arrays.ts
│ │ │ ├── building
│ │ │ │ ├── __tests__
│ │ │ │ │ ├── detect-dev-changes.test.ts
│ │ │ │ │ ├── find-entrypoints.test.ts
│ │ │ │ │ ├── group-entrypoints.test.ts
│ │ │ │ │ └── test-entrypoints
│ │ │ │ │ │ ├── background.ts
│ │ │ │ │ │ ├── content.ts
│ │ │ │ │ │ ├── imported-option.ts
│ │ │ │ │ │ ├── no-default-export.ts
│ │ │ │ │ │ ├── react.tsx
│ │ │ │ │ │ ├── unlisted.ts
│ │ │ │ │ │ └── with-named.ts
│ │ │ │ ├── build-entrypoints.ts
│ │ │ │ ├── detect-dev-changes.ts
│ │ │ │ ├── find-entrypoints.ts
│ │ │ │ ├── group-entrypoints.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── internal-build.ts
│ │ │ │ └── rebuild.ts
│ │ │ ├── cache.ts
│ │ │ ├── cli.ts
│ │ │ ├── constants.ts
│ │ │ ├── content-scripts.ts
│ │ │ ├── content-security-policy.ts
│ │ │ ├── entrypoints.ts
│ │ │ ├── env.ts
│ │ │ ├── environments
│ │ │ │ ├── browser-environment.ts
│ │ │ │ ├── environment.ts
│ │ │ │ ├── extension-environment.ts
│ │ │ │ └── index.ts
│ │ │ ├── eslint.ts
│ │ │ ├── fs.ts
│ │ │ ├── globals.ts
│ │ │ ├── i18n.ts
│ │ │ ├── log
│ │ │ │ ├── index.ts
│ │ │ │ ├── printBuildSummary.ts
│ │ │ │ ├── printFileList.ts
│ │ │ │ ├── printHeader.ts
│ │ │ │ └── printTable.ts
│ │ │ ├── manifest.ts
│ │ │ ├── minimatch-multiple.ts
│ │ │ ├── network.ts
│ │ │ ├── number.ts
│ │ │ ├── package.ts
│ │ │ ├── paths.ts
│ │ │ ├── strings.ts
│ │ │ ├── syntax-errors.ts
│ │ │ ├── testing
│ │ │ │ └── fake-objects.ts
│ │ │ ├── time.ts
│ │ │ ├── transform.ts
│ │ │ ├── types.ts
│ │ │ ├── validation.ts
│ │ │ ├── virtual-modules.ts
│ │ │ └── wsl.ts
│ │ ├── wxt.ts
│ │ └── zip.ts
│ ├── index.ts
│ ├── modules.ts
│ ├── testing
│ │ ├── fake-browser.ts
│ │ ├── index.ts
│ │ └── wxt-vitest-plugin.ts
│ ├── types.ts
│ ├── utils
│ │ ├── README.md
│ │ ├── __tests__
│ │ │ ├── __snapshots__
│ │ │ │ └── split-shadow-root-css.test.ts.snap
│ │ │ ├── content-script-context.test.ts
│ │ │ ├── define-background.test.ts
│ │ │ ├── define-content-script.test.ts
│ │ │ ├── define-unlisted-script.test.ts
│ │ │ └── split-shadow-root-css.test.ts
│ │ ├── app-config.ts
│ │ ├── content-script-context.ts
│ │ ├── content-script-ui
│ │ │ ├── __tests__
│ │ │ │ └── index.test.ts
│ │ │ ├── iframe.ts
│ │ │ ├── integrated.ts
│ │ │ ├── shadow-root.ts
│ │ │ ├── shared.ts
│ │ │ └── types.ts
│ │ ├── define-app-config.ts
│ │ ├── define-background.ts
│ │ ├── define-content-script.ts
│ │ ├── define-unlisted-script.ts
│ │ ├── define-wxt-plugin.ts
│ │ ├── inject-script.ts
│ │ ├── internal
│ │ │ ├── custom-events.ts
│ │ │ ├── dev-server-websocket.ts
│ │ │ ├── location-watcher.ts
│ │ │ └── logger.ts
│ │ ├── match-patterns.ts
│ │ ├── split-shadow-root-css.ts
│ │ └── storage.ts
│ ├── version.ts
│ ├── virtual
│ │ ├── README.md
│ │ ├── background-entrypoint.ts
│ │ ├── content-script-isolated-world-entrypoint.ts
│ │ ├── content-script-main-world-entrypoint.ts
│ │ ├── mock-browser.ts
│ │ ├── reload-html.ts
│ │ ├── tsconfig.json
│ │ ├── unlisted-script-entrypoint.ts
│ │ ├── utils
│ │ │ ├── keep-service-worker-alive.ts
│ │ │ └── reload-content-scripts.ts
│ │ └── virtual-module-globals.d.ts
│ └── vite-builder-env.d.ts
│ ├── tsconfig.json
│ ├── typedoc.json
│ ├── vitest.config.ts
│ ├── vitest.globalSetup.ts
│ └── vitest.setup.ts
├── patches
├── markdown-it-footnote.md
└── markdown-it-footnote.patch
├── pnpm-lock.yaml
├── pnpm-workspace.yaml
├── scripts
├── benchmarks
│ ├── browser-startup.patch
│ └── browser-startup.sh
├── bump-package-version.ts
├── create-github-release.ts
├── generate-readmes.sh
├── git.ts
├── list-unreleased-commits.sh
├── sync-releases.ts
└── upgrade-deps.ts
├── templates
├── react
│ ├── README.md
│ ├── _gitignore
│ ├── assets
│ │ └── react.svg
│ ├── entrypoints
│ │ ├── background.ts
│ │ ├── content.ts
│ │ └── popup
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── index.html
│ │ │ ├── main.tsx
│ │ │ └── style.css
│ ├── package.json
│ ├── public
│ │ ├── icon
│ │ │ ├── 128.png
│ │ │ ├── 16.png
│ │ │ ├── 32.png
│ │ │ ├── 48.png
│ │ │ └── 96.png
│ │ └── wxt.svg
│ ├── tsconfig.json
│ └── wxt.config.ts
├── solid
│ ├── README.md
│ ├── _gitignore
│ ├── assets
│ │ └── solid.svg
│ ├── entrypoints
│ │ ├── background.ts
│ │ ├── content.ts
│ │ └── popup
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── index.html
│ │ │ ├── main.tsx
│ │ │ └── style.css
│ ├── package.json
│ ├── public
│ │ ├── icon
│ │ │ ├── 128.png
│ │ │ ├── 16.png
│ │ │ ├── 32.png
│ │ │ ├── 48.png
│ │ │ └── 96.png
│ │ └── wxt.svg
│ ├── tsconfig.json
│ └── wxt.config.ts
├── svelte
│ ├── .vscode
│ │ └── extensions.json
│ ├── README.md
│ ├── _gitignore
│ ├── package.json
│ ├── public
│ │ ├── icon
│ │ │ ├── 128.png
│ │ │ ├── 16.png
│ │ │ ├── 32.png
│ │ │ ├── 48.png
│ │ │ └── 96.png
│ │ └── wxt.svg
│ ├── src
│ │ ├── assets
│ │ │ └── svelte.svg
│ │ ├── entrypoints
│ │ │ ├── background.ts
│ │ │ ├── content.ts
│ │ │ └── popup
│ │ │ │ ├── App.svelte
│ │ │ │ ├── app.css
│ │ │ │ ├── index.html
│ │ │ │ └── main.ts
│ │ └── lib
│ │ │ └── Counter.svelte
│ ├── tsconfig.json
│ ├── wxt-env.d.ts
│ └── wxt.config.ts
├── vanilla
│ ├── _gitignore
│ ├── assets
│ │ └── typescript.svg
│ ├── components
│ │ └── counter.ts
│ ├── entrypoints
│ │ ├── background.ts
│ │ ├── content.ts
│ │ └── popup
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ └── style.css
│ ├── package.json
│ ├── public
│ │ ├── icon
│ │ │ ├── 128.png
│ │ │ ├── 16.png
│ │ │ ├── 32.png
│ │ │ ├── 48.png
│ │ │ └── 96.png
│ │ └── wxt.svg
│ ├── tsconfig.json
│ └── wxt.config.ts
└── vue
│ ├── .vscode
│ └── extensions.json
│ ├── README.md
│ ├── _gitignore
│ ├── assets
│ └── vue.svg
│ ├── components
│ └── HelloWorld.vue
│ ├── entrypoints
│ ├── background.ts
│ ├── content.ts
│ └── popup
│ │ ├── App.vue
│ │ ├── index.html
│ │ ├── main.ts
│ │ └── style.css
│ ├── package.json
│ ├── public
│ ├── icon
│ │ ├── 128.png
│ │ ├── 16.png
│ │ ├── 32.png
│ │ ├── 48.png
│ │ └── 96.png
│ └── wxt.svg
│ ├── tsconfig.json
│ └── wxt.config.ts
├── tsconfig.base.json
└── tsconfig.json
/.codecov.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.codecov.yml
--------------------------------------------------------------------------------
/.commitlintrc.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.commitlintrc.yml
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.gitattributes
--------------------------------------------------------------------------------
/.github/CODEOWNERS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/CODEOWNERS
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/FUNDING.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/ISSUE_TEMPLATE/config.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/ISSUE_TEMPLATE/feature_request.md
--------------------------------------------------------------------------------
/.github/actions/setup/action.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/actions/setup/action.yml
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/dependabot.yml
--------------------------------------------------------------------------------
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/pull_request_template.md
--------------------------------------------------------------------------------
/.github/workflows/notify-unreleased-commits.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/notify-unreleased-commits.yml
--------------------------------------------------------------------------------
/.github/workflows/pkg.pr.new.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/pkg.pr.new.yml
--------------------------------------------------------------------------------
/.github/workflows/pr-closed.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/pr-closed.yml
--------------------------------------------------------------------------------
/.github/workflows/pr-title.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/pr-title.yml
--------------------------------------------------------------------------------
/.github/workflows/publish-docs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/publish-docs.yml
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/release.yml
--------------------------------------------------------------------------------
/.github/workflows/sync-releases.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/sync-releases.yml
--------------------------------------------------------------------------------
/.github/workflows/update-browser-package.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/update-browser-package.yml
--------------------------------------------------------------------------------
/.github/workflows/validate.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/validate.yml
--------------------------------------------------------------------------------
/.github/workflows/vhs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.github/workflows/vhs.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.gitignore
--------------------------------------------------------------------------------
/.markdownlint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.markdownlint.json
--------------------------------------------------------------------------------
/.markdownlintignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.markdownlintignore
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.prettierignore
--------------------------------------------------------------------------------
/.prettierrc.yml:
--------------------------------------------------------------------------------
1 | singleQuote: true
2 | endOfLine: lf
3 |
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.vscode/extensions.json
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/.vscode/settings.json
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/README.md
--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/SECURITY.md
--------------------------------------------------------------------------------
/docs/.vitepress/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM lipanski/docker-static-website:latest
2 | COPY dist .
3 |
--------------------------------------------------------------------------------
/docs/.vitepress/components/BlogHome.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/BlogHome.vue
--------------------------------------------------------------------------------
/docs/.vitepress/components/BlogLayout.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/BlogLayout.vue
--------------------------------------------------------------------------------
/docs/.vitepress/components/BlogPostPreview.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/BlogPostPreview.vue
--------------------------------------------------------------------------------
/docs/.vitepress/components/EntrypointPatterns.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/EntrypointPatterns.vue
--------------------------------------------------------------------------------
/docs/.vitepress/components/ExampleSearch.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/ExampleSearch.vue
--------------------------------------------------------------------------------
/docs/.vitepress/components/ExampleSearchFilterByItem.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/ExampleSearchFilterByItem.vue
--------------------------------------------------------------------------------
/docs/.vitepress/components/ExampleSearchResult.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/ExampleSearchResult.vue
--------------------------------------------------------------------------------
/docs/.vitepress/components/Icon.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/Icon.vue
--------------------------------------------------------------------------------
/docs/.vitepress/components/UsingWxtSection.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/components/UsingWxtSection.vue
--------------------------------------------------------------------------------
/docs/.vitepress/composables/useBlogDate.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/composables/useBlogDate.ts
--------------------------------------------------------------------------------
/docs/.vitepress/composables/useListExtensionDetails.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/composables/useListExtensionDetails.ts
--------------------------------------------------------------------------------
/docs/.vitepress/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/config.ts
--------------------------------------------------------------------------------
/docs/.vitepress/loaders/blog.data.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/loaders/blog.data.ts
--------------------------------------------------------------------------------
/docs/.vitepress/loaders/cli.data.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/loaders/cli.data.ts
--------------------------------------------------------------------------------
/docs/.vitepress/theme/custom.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/theme/custom.css
--------------------------------------------------------------------------------
/docs/.vitepress/theme/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/theme/index.ts
--------------------------------------------------------------------------------
/docs/.vitepress/utils/head.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/utils/head.ts
--------------------------------------------------------------------------------
/docs/.vitepress/utils/menus.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/utils/menus.ts
--------------------------------------------------------------------------------
/docs/.vitepress/utils/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/.vitepress/utils/types.ts
--------------------------------------------------------------------------------
/docs/analytics.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/docs/api/cli/wxt-build.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/api/cli/wxt-build.md
--------------------------------------------------------------------------------
/docs/api/cli/wxt-clean.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/api/cli/wxt-clean.md
--------------------------------------------------------------------------------
/docs/api/cli/wxt-init.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/api/cli/wxt-init.md
--------------------------------------------------------------------------------
/docs/api/cli/wxt-prepare.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/api/cli/wxt-prepare.md
--------------------------------------------------------------------------------
/docs/api/cli/wxt-submit-init.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/api/cli/wxt-submit-init.md
--------------------------------------------------------------------------------
/docs/api/cli/wxt-submit.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/api/cli/wxt-submit.md
--------------------------------------------------------------------------------
/docs/api/cli/wxt-zip.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/api/cli/wxt-zip.md
--------------------------------------------------------------------------------
/docs/api/cli/wxt.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/api/cli/wxt.md
--------------------------------------------------------------------------------
/docs/assets/cli-output.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/assets/cli-output.png
--------------------------------------------------------------------------------
/docs/assets/init-demo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/assets/init-demo.gif
--------------------------------------------------------------------------------
/docs/auto-icons.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/docs/blog.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/blog.md
--------------------------------------------------------------------------------
/docs/blog/.drafts/2024-10-19-real-world-messaging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/blog/.drafts/2024-10-19-real-world-messaging.md
--------------------------------------------------------------------------------
/docs/blog/2024-12-06-using-imports-module.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/blog/2024-12-06-using-imports-module.md
--------------------------------------------------------------------------------
/docs/examples.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/examples.md
--------------------------------------------------------------------------------
/docs/guide/essentials/assets.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/assets.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/auto-imports.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/auto-imports.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/browser-startup.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/browser-startup.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/build-mode.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/build-mode.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/entrypoint-loaders.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/entrypoint-loaders.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/environment-variables.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/environment-variables.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/hooks.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/hooks.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/manifest.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/manifest.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/runtime.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/runtime.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/typescript.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/typescript.md
--------------------------------------------------------------------------------
/docs/guide/essentials/config/vite.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/config/vite.md
--------------------------------------------------------------------------------
/docs/guide/essentials/content-scripts.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/content-scripts.md
--------------------------------------------------------------------------------
/docs/guide/essentials/e2e-testing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/e2e-testing.md
--------------------------------------------------------------------------------
/docs/guide/essentials/entrypoints.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/entrypoints.md
--------------------------------------------------------------------------------
/docs/guide/essentials/es-modules.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/es-modules.md
--------------------------------------------------------------------------------
/docs/guide/essentials/extension-apis.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/extension-apis.md
--------------------------------------------------------------------------------
/docs/guide/essentials/frontend-frameworks.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/frontend-frameworks.md
--------------------------------------------------------------------------------
/docs/guide/essentials/i18n.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/i18n.md
--------------------------------------------------------------------------------
/docs/guide/essentials/messaging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/messaging.md
--------------------------------------------------------------------------------
/docs/guide/essentials/project-structure.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/project-structure.md
--------------------------------------------------------------------------------
/docs/guide/essentials/publishing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/publishing.md
--------------------------------------------------------------------------------
/docs/guide/essentials/remote-code.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/remote-code.md
--------------------------------------------------------------------------------
/docs/guide/essentials/scripting.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/scripting.md
--------------------------------------------------------------------------------
/docs/guide/essentials/storage.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/storage.md
--------------------------------------------------------------------------------
/docs/guide/essentials/target-different-browsers.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/target-different-browsers.md
--------------------------------------------------------------------------------
/docs/guide/essentials/testing-updates.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/testing-updates.md
--------------------------------------------------------------------------------
/docs/guide/essentials/unit-testing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/unit-testing.md
--------------------------------------------------------------------------------
/docs/guide/essentials/wxt-modules.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/essentials/wxt-modules.md
--------------------------------------------------------------------------------
/docs/guide/installation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/installation.md
--------------------------------------------------------------------------------
/docs/guide/introduction.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/introduction.md
--------------------------------------------------------------------------------
/docs/guide/resources/community.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/resources/community.md
--------------------------------------------------------------------------------
/docs/guide/resources/compare.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/resources/compare.md
--------------------------------------------------------------------------------
/docs/guide/resources/faq.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/resources/faq.md
--------------------------------------------------------------------------------
/docs/guide/resources/how-wxt-works.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/resources/how-wxt-works.md
--------------------------------------------------------------------------------
/docs/guide/resources/migrate.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/resources/migrate.md
--------------------------------------------------------------------------------
/docs/guide/resources/upgrading.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/guide/resources/upgrading.md
--------------------------------------------------------------------------------
/docs/i18n.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/i18n.md
--------------------------------------------------------------------------------
/docs/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/index.md
--------------------------------------------------------------------------------
/docs/public/_redirects:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/_redirects
--------------------------------------------------------------------------------
/docs/public/content-script-ui-alignment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/content-script-ui-alignment.png
--------------------------------------------------------------------------------
/docs/public/content-script-ui-append.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/content-script-ui-append.png
--------------------------------------------------------------------------------
/docs/public/content-script-ui-position.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/content-script-ui-position.png
--------------------------------------------------------------------------------
/docs/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/favicon.ico
--------------------------------------------------------------------------------
/docs/public/hero-logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/hero-logo.svg
--------------------------------------------------------------------------------
/docs/public/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/logo.svg
--------------------------------------------------------------------------------
/docs/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/robots.txt
--------------------------------------------------------------------------------
/docs/public/social-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/public/social-preview.png
--------------------------------------------------------------------------------
/docs/runner.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/docs/storage.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/storage.md
--------------------------------------------------------------------------------
/docs/tapes/init-demo.tape:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/tapes/init-demo.tape
--------------------------------------------------------------------------------
/docs/typedoc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/docs/typedoc.json
--------------------------------------------------------------------------------
/docs/unocss.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/package.json
--------------------------------------------------------------------------------
/packages/analytics/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/analytics/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/README.md
--------------------------------------------------------------------------------
/packages/analytics/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/app.config.ts
--------------------------------------------------------------------------------
/packages/analytics/build.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/build.config.ts
--------------------------------------------------------------------------------
/packages/analytics/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/packages/analytics/entrypoints/popup/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/entrypoints/popup/main.ts
--------------------------------------------------------------------------------
/packages/analytics/modules/analytics/background-plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/modules/analytics/background-plugin.ts
--------------------------------------------------------------------------------
/packages/analytics/modules/analytics/client.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/modules/analytics/client.ts
--------------------------------------------------------------------------------
/packages/analytics/modules/analytics/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/modules/analytics/index.ts
--------------------------------------------------------------------------------
/packages/analytics/modules/analytics/providers/google-analytics-4.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/modules/analytics/providers/google-analytics-4.ts
--------------------------------------------------------------------------------
/packages/analytics/modules/analytics/providers/umami.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/modules/analytics/providers/umami.ts
--------------------------------------------------------------------------------
/packages/analytics/modules/analytics/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/modules/analytics/types.ts
--------------------------------------------------------------------------------
/packages/analytics/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/package.json
--------------------------------------------------------------------------------
/packages/analytics/public/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/analytics/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/tsconfig.json
--------------------------------------------------------------------------------
/packages/analytics/wxt.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/analytics/wxt.config.ts
--------------------------------------------------------------------------------
/packages/auto-icons/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/auto-icons/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/auto-icons/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/auto-icons/README.md
--------------------------------------------------------------------------------
/packages/auto-icons/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/auto-icons/package.json
--------------------------------------------------------------------------------
/packages/auto-icons/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/auto-icons/src/index.ts
--------------------------------------------------------------------------------
/packages/auto-icons/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/auto-icons/tsconfig.json
--------------------------------------------------------------------------------
/packages/browser/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/README.md
--------------------------------------------------------------------------------
/packages/browser/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/package.json
--------------------------------------------------------------------------------
/packages/browser/scripts/generate.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/scripts/generate.ts
--------------------------------------------------------------------------------
/packages/browser/src/__tests__/index.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/src/__tests__/index.test.ts
--------------------------------------------------------------------------------
/packages/browser/src/gen/chrome-cast/index.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/src/gen/chrome-cast/index.d.ts
--------------------------------------------------------------------------------
/packages/browser/src/gen/har-format/index.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/src/gen/har-format/index.d.ts
--------------------------------------------------------------------------------
/packages/browser/src/gen/index.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/src/gen/index.d.ts
--------------------------------------------------------------------------------
/packages/browser/src/index.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/src/index.d.ts
--------------------------------------------------------------------------------
/packages/browser/src/index.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/src/index.mjs
--------------------------------------------------------------------------------
/packages/browser/templates/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/templates/package.json
--------------------------------------------------------------------------------
/packages/browser/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/browser/tsconfig.json
--------------------------------------------------------------------------------
/packages/i18n/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/i18n/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/README.md
--------------------------------------------------------------------------------
/packages/i18n/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/package.json
--------------------------------------------------------------------------------
/packages/i18n/src/__tests__/build.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/__tests__/build.test.ts
--------------------------------------------------------------------------------
/packages/i18n/src/__tests__/index.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/__tests__/index.test.ts
--------------------------------------------------------------------------------
/packages/i18n/src/__tests__/types.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/__tests__/types.test.ts
--------------------------------------------------------------------------------
/packages/i18n/src/__tests__/utils.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/__tests__/utils.test.ts
--------------------------------------------------------------------------------
/packages/i18n/src/build.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/build.ts
--------------------------------------------------------------------------------
/packages/i18n/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/index.ts
--------------------------------------------------------------------------------
/packages/i18n/src/module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/module.ts
--------------------------------------------------------------------------------
/packages/i18n/src/supported-locales.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/supported-locales.ts
--------------------------------------------------------------------------------
/packages/i18n/src/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/types.ts
--------------------------------------------------------------------------------
/packages/i18n/src/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/src/utils.ts
--------------------------------------------------------------------------------
/packages/i18n/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/tsconfig.json
--------------------------------------------------------------------------------
/packages/i18n/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/i18n/vitest.config.ts
--------------------------------------------------------------------------------
/packages/module-react/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/module-react/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/README.md
--------------------------------------------------------------------------------
/packages/module-react/build.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/build.config.ts
--------------------------------------------------------------------------------
/packages/module-react/components/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/components/App.tsx
--------------------------------------------------------------------------------
/packages/module-react/entrypoints/content/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/entrypoints/content/index.tsx
--------------------------------------------------------------------------------
/packages/module-react/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/packages/module-react/entrypoints/popup/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/entrypoints/popup/main.tsx
--------------------------------------------------------------------------------
/packages/module-react/modules/react.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/modules/react.ts
--------------------------------------------------------------------------------
/packages/module-react/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/package.json
--------------------------------------------------------------------------------
/packages/module-react/public/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/module-react/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-react/tsconfig.json
--------------------------------------------------------------------------------
/packages/module-solid/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/module-solid/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/README.md
--------------------------------------------------------------------------------
/packages/module-solid/build.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/build.config.ts
--------------------------------------------------------------------------------
/packages/module-solid/components/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/components/App.tsx
--------------------------------------------------------------------------------
/packages/module-solid/entrypoints/content/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/entrypoints/content/index.tsx
--------------------------------------------------------------------------------
/packages/module-solid/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/packages/module-solid/entrypoints/popup/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/entrypoints/popup/main.tsx
--------------------------------------------------------------------------------
/packages/module-solid/modules/solid.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/modules/solid.ts
--------------------------------------------------------------------------------
/packages/module-solid/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/package.json
--------------------------------------------------------------------------------
/packages/module-solid/public/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/module-solid/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-solid/tsconfig.json
--------------------------------------------------------------------------------
/packages/module-svelte/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-svelte/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/module-svelte/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-svelte/README.md
--------------------------------------------------------------------------------
/packages/module-svelte/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-svelte/package.json
--------------------------------------------------------------------------------
/packages/module-svelte/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-svelte/src/index.ts
--------------------------------------------------------------------------------
/packages/module-svelte/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-svelte/tsconfig.json
--------------------------------------------------------------------------------
/packages/module-vue/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-vue/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/module-vue/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-vue/README.md
--------------------------------------------------------------------------------
/packages/module-vue/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-vue/package.json
--------------------------------------------------------------------------------
/packages/module-vue/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-vue/src/index.ts
--------------------------------------------------------------------------------
/packages/module-vue/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/module-vue/tsconfig.json
--------------------------------------------------------------------------------
/packages/runner/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/runner/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/README.md
--------------------------------------------------------------------------------
/packages/runner/demo-extension/background.js:
--------------------------------------------------------------------------------
1 | console.log('Hello background!');
2 |
--------------------------------------------------------------------------------
/packages/runner/demo-extension/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/demo-extension/manifest.json
--------------------------------------------------------------------------------
/packages/runner/dev.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/dev.ts
--------------------------------------------------------------------------------
/packages/runner/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/package.json
--------------------------------------------------------------------------------
/packages/runner/src/__tests__/install.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/__tests__/install.test.ts
--------------------------------------------------------------------------------
/packages/runner/src/__tests__/options.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/__tests__/options.test.ts
--------------------------------------------------------------------------------
/packages/runner/src/bidi.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/bidi.ts
--------------------------------------------------------------------------------
/packages/runner/src/browser-paths.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/browser-paths.ts
--------------------------------------------------------------------------------
/packages/runner/src/cdp.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/cdp.ts
--------------------------------------------------------------------------------
/packages/runner/src/debug.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/debug.ts
--------------------------------------------------------------------------------
/packages/runner/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/index.ts
--------------------------------------------------------------------------------
/packages/runner/src/install.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/install.ts
--------------------------------------------------------------------------------
/packages/runner/src/options.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/options.ts
--------------------------------------------------------------------------------
/packages/runner/src/promises.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/promises.ts
--------------------------------------------------------------------------------
/packages/runner/src/run.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/run.ts
--------------------------------------------------------------------------------
/packages/runner/src/web-socket.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/src/web-socket.ts
--------------------------------------------------------------------------------
/packages/runner/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/tsconfig.json
--------------------------------------------------------------------------------
/packages/runner/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/runner/vitest.config.ts
--------------------------------------------------------------------------------
/packages/storage/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/storage/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/storage/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/storage/README.md
--------------------------------------------------------------------------------
/packages/storage/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/storage/package.json
--------------------------------------------------------------------------------
/packages/storage/src/__tests__/index.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/storage/src/__tests__/index.test.ts
--------------------------------------------------------------------------------
/packages/storage/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/storage/src/index.ts
--------------------------------------------------------------------------------
/packages/storage/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/storage/tsconfig.json
--------------------------------------------------------------------------------
/packages/storage/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/storage/vitest.config.ts
--------------------------------------------------------------------------------
/packages/storage/vitest.setup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/storage/vitest.setup.ts
--------------------------------------------------------------------------------
/packages/unocss/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/unocss/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/unocss/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/unocss/README.md
--------------------------------------------------------------------------------
/packages/unocss/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/unocss/package.json
--------------------------------------------------------------------------------
/packages/unocss/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/unocss/src/index.ts
--------------------------------------------------------------------------------
/packages/unocss/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/unocss/tsconfig.json
--------------------------------------------------------------------------------
/packages/webextension-polyfill/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/webextension-polyfill/README.md
--------------------------------------------------------------------------------
/packages/webextension-polyfill/build.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/webextension-polyfill/build.config.ts
--------------------------------------------------------------------------------
/packages/webextension-polyfill/entrypoints/content/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/webextension-polyfill/entrypoints/content/index.ts
--------------------------------------------------------------------------------
/packages/webextension-polyfill/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/webextension-polyfill/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/packages/webextension-polyfill/entrypoints/popup/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/webextension-polyfill/entrypoints/popup/main.ts
--------------------------------------------------------------------------------
/packages/webextension-polyfill/modules/webextension-polyfill/browser.ts:
--------------------------------------------------------------------------------
1 | export { default as browser } from 'webextension-polyfill';
2 |
--------------------------------------------------------------------------------
/packages/webextension-polyfill/modules/webextension-polyfill/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/webextension-polyfill/modules/webextension-polyfill/index.ts
--------------------------------------------------------------------------------
/packages/webextension-polyfill/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/webextension-polyfill/package.json
--------------------------------------------------------------------------------
/packages/webextension-polyfill/public/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/webextension-polyfill/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/webextension-polyfill/tsconfig.json
--------------------------------------------------------------------------------
/packages/wxt-demo/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/eslint.config.js
--------------------------------------------------------------------------------
/packages/wxt-demo/modules/auto-icons.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/modules/auto-icons.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/modules/example.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/modules/example.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/modules/i18n.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/modules/i18n.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/modules/unocss.ts:
--------------------------------------------------------------------------------
1 | export { default } from '@wxt-dev/unocss';
2 |
--------------------------------------------------------------------------------
/packages/wxt-demo/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/package.json
--------------------------------------------------------------------------------
/packages/wxt-demo/src/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/app.config.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/assets/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/assets/icon.png
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/__tests__/background.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/__tests__/background.test.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/automount.content/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/automount.content/index.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/automount.content/style.css:
--------------------------------------------------------------------------------
1 | :root {
2 | color-scheme: dark;
3 | }
4 |
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/background.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/background.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/example-2.scss:
--------------------------------------------------------------------------------
1 | body {
2 | background-color: red;
3 | }
4 |
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/example-tsx.content.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/example-tsx.content.tsx
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/example.sandbox/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/example.sandbox/index.html
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/iframe-src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/iframe-src/index.html
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/iframe-src/main.ts:
--------------------------------------------------------------------------------
1 | console.log('iframe 2');
2 |
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/iframe.content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/iframe.content.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/injected.content/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | color: blue;
3 | }
4 |
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/location-change.content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/location-change.content.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/main-world.content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/main-world.content.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/options/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/options/index.html
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/options/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/options/main.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/options/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/options/style.css
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/popup.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/popup.html
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/sandbox.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/sandbox.html
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/sidepanel.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/sidepanel.html
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/ui.content/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/ui.content/index.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/ui.content/manual-style.css:
--------------------------------------------------------------------------------
1 | body {
2 | padding: 2rem;
3 | background-color: blanchedalmond;
4 | }
5 |
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/ui.content/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/ui.content/style.css
--------------------------------------------------------------------------------
/packages/wxt-demo/src/entrypoints/unlisted.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/entrypoints/unlisted.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/src/locales/en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/locales/en.yml
--------------------------------------------------------------------------------
/packages/wxt-demo/src/utils/logger.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/src/utils/logger.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/tsconfig.json
--------------------------------------------------------------------------------
/packages/wxt-demo/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/vitest.config.ts
--------------------------------------------------------------------------------
/packages/wxt-demo/wxt.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt-demo/wxt.config.ts
--------------------------------------------------------------------------------
/packages/wxt/.oxlintignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/.oxlintignore
--------------------------------------------------------------------------------
/packages/wxt/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/wxt/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/README.md
--------------------------------------------------------------------------------
/packages/wxt/bin/wxt-publish-extension.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/bin/wxt-publish-extension.cjs
--------------------------------------------------------------------------------
/packages/wxt/bin/wxt.mjs:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | import '../dist/cli/index.mjs';
3 |
--------------------------------------------------------------------------------
/packages/wxt/build.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/build.config.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/__snapshots__/auto-imports.test.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/__snapshots__/auto-imports.test.ts.snap
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/analysis.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/analysis.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/auto-imports.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/auto-imports.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/dev.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/dev.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/hooks.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/hooks.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/init.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/init.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/manifest-content.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/manifest-content.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/modules.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/modules.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/npm-packages.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/npm-packages.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/output-structure.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/output-structure.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/react.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/react.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/remote-code.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/remote-code.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/typescript-project.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/typescript-project.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/user-config.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/user-config.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/tests/zip.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/tests/zip.test.ts
--------------------------------------------------------------------------------
/packages/wxt/e2e/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/e2e/utils.ts
--------------------------------------------------------------------------------
/packages/wxt/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/package.json
--------------------------------------------------------------------------------
/packages/wxt/src/@types/globals.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/@types/globals.d.ts
--------------------------------------------------------------------------------
/packages/wxt/src/@types/modules.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/@types/modules.d.ts
--------------------------------------------------------------------------------
/packages/wxt/src/@types/project-types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/@types/project-types.d.ts
--------------------------------------------------------------------------------
/packages/wxt/src/__tests__/modules.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/__tests__/modules.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/browser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/browser.ts
--------------------------------------------------------------------------------
/packages/wxt/src/builtin-modules/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/builtin-modules/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/builtin-modules/unimport.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/builtin-modules/unimport.ts
--------------------------------------------------------------------------------
/packages/wxt/src/cli/__tests__/index.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/cli/__tests__/index.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/cli/cli-utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/cli/cli-utils.ts
--------------------------------------------------------------------------------
/packages/wxt/src/cli/commands.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/cli/commands.ts
--------------------------------------------------------------------------------
/packages/wxt/src/cli/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/cli/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/build.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/build.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/__tests__/fixtures/module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/__tests__/fixtures/module.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/__tests__/fixtures/test.ts:
--------------------------------------------------------------------------------
1 | console.log('Side-effect in test.ts');
2 | export const a = 'a';
3 |
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/__tests__/devHtmlPrerender.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/__tests__/devHtmlPrerender.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/bundleAnalysis.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/bundleAnalysis.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/cssEntrypoints.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/cssEntrypoints.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/defineImportMeta.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/defineImportMeta.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/devHtmlPrerender.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/devHtmlPrerender.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/devServerGlobals.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/devServerGlobals.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/download.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/download.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/entrypointGroupGlobals.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/entrypointGroupGlobals.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/extensionApiMock.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/extensionApiMock.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/globals.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/globals.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/iifeFooter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/iifeFooter.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/noopBackground.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/noopBackground.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/removeEntrypointMainFunction.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/removeEntrypointMainFunction.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/resolveAppConfig.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/resolveAppConfig.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/resolveVirtualModules.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/resolveVirtualModules.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/tsconfigPaths.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/tsconfigPaths.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/builders/vite/plugins/wxtPluginLoader.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/builders/vite/plugins/wxtPluginLoader.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/clean.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/clean.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/create-server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/create-server.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/define-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/define-config.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/define-web-ext-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/define-web-ext-config.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/generate-wxt-dir.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/generate-wxt-dir.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/initialize.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/initialize.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/keyboard-shortcuts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/keyboard-shortcuts.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/bun.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/bun.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-bun-project/bun.lockb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-bun-project/bun.lockb
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-bun-project/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-bun-project/package.json
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-npm-project/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-npm-project/package-lock.json
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-npm-project/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-npm-project/package.json
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-pnpm-project/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-pnpm-project/package.json
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-pnpm-project/pnpm-lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-pnpm-project/pnpm-lock.yaml
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-yarn-project/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-yarn-project/package.json
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-yarn-project/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/fixtures/simple-yarn-project/yarn.lock
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/npm.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/npm.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/pnpm.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/__tests__/yarn.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/__tests__/yarn.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/bun.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/bun.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/deno.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/deno.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/npm.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/npm.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/pnpm.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/pnpm.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/types.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/package-managers/yarn.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/package-managers/yarn.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/prepare.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/prepare.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/resolve-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/resolve-config.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/runners/__tests__/index.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/runners/__tests__/index.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/runners/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/runners/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/runners/manual.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/runners/manual.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/runners/safari.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/runners/safari.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/runners/web-ext.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/runners/web-ext.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/runners/wsl.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/runners/wsl.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/arrays.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/arrays.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/content-scripts.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/content-scripts.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/content-security-policy.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/content-security-policy.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/entrypoints.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/entrypoints.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/manifest.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/manifest.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/minimatch-multiple.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/minimatch-multiple.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/number.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/number.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/package.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/package.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/paths.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/paths.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/strings.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/strings.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/transform.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/transform.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/validation.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/validation.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/__tests__/virtual-modules.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/__tests__/virtual-modules.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/arrays.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/arrays.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/detect-dev-changes.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/detect-dev-changes.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/find-entrypoints.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/find-entrypoints.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/group-entrypoints.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/group-entrypoints.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/background.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/background.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/content.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/imported-option.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/imported-option.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/no-default-export.ts:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/react.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/react.tsx
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/unlisted.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/unlisted.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/with-named.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/__tests__/test-entrypoints/with-named.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/build-entrypoints.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/build-entrypoints.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/detect-dev-changes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/detect-dev-changes.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/find-entrypoints.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/find-entrypoints.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/group-entrypoints.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/group-entrypoints.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/internal-build.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/internal-build.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/building/rebuild.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/building/rebuild.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/cache.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/cache.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/cli.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/cli.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/constants.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/constants.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/content-scripts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/content-scripts.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/content-security-policy.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/content-security-policy.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/entrypoints.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/entrypoints.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/env.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/env.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/environments/browser-environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/environments/browser-environment.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/environments/environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/environments/environment.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/environments/extension-environment.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/environments/extension-environment.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/environments/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/environments/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/eslint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/eslint.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/fs.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/fs.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/globals.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/globals.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/i18n.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/i18n.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/log/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/log/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/log/printBuildSummary.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/log/printBuildSummary.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/log/printFileList.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/log/printFileList.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/log/printHeader.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/log/printHeader.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/log/printTable.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/log/printTable.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/manifest.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/manifest.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/minimatch-multiple.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/minimatch-multiple.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/network.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/network.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/number.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/number.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/package.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/package.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/paths.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/paths.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/strings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/strings.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/syntax-errors.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/syntax-errors.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/testing/fake-objects.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/testing/fake-objects.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/time.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/time.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/transform.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/transform.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/types.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/validation.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/validation.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/virtual-modules.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/virtual-modules.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/utils/wsl.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/utils/wsl.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/wxt.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/wxt.ts
--------------------------------------------------------------------------------
/packages/wxt/src/core/zip.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/core/zip.ts
--------------------------------------------------------------------------------
/packages/wxt/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/modules.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/modules.ts
--------------------------------------------------------------------------------
/packages/wxt/src/testing/fake-browser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/testing/fake-browser.ts
--------------------------------------------------------------------------------
/packages/wxt/src/testing/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/testing/index.ts
--------------------------------------------------------------------------------
/packages/wxt/src/testing/wxt-vitest-plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/testing/wxt-vitest-plugin.ts
--------------------------------------------------------------------------------
/packages/wxt/src/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/types.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/README.md
--------------------------------------------------------------------------------
/packages/wxt/src/utils/__tests__/__snapshots__/split-shadow-root-css.test.ts.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/__tests__/__snapshots__/split-shadow-root-css.test.ts.snap
--------------------------------------------------------------------------------
/packages/wxt/src/utils/__tests__/content-script-context.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/__tests__/content-script-context.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/__tests__/define-background.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/__tests__/define-background.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/__tests__/define-content-script.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/__tests__/define-content-script.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/__tests__/define-unlisted-script.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/__tests__/define-unlisted-script.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/__tests__/split-shadow-root-css.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/__tests__/split-shadow-root-css.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/app-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/app-config.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/content-script-context.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/content-script-context.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/content-script-ui/__tests__/index.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/content-script-ui/__tests__/index.test.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/content-script-ui/iframe.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/content-script-ui/iframe.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/content-script-ui/integrated.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/content-script-ui/integrated.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/content-script-ui/shadow-root.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/content-script-ui/shadow-root.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/content-script-ui/shared.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/content-script-ui/shared.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/content-script-ui/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/content-script-ui/types.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/define-app-config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/define-app-config.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/define-background.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/define-background.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/define-content-script.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/define-content-script.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/define-unlisted-script.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/define-unlisted-script.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/define-wxt-plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/define-wxt-plugin.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/inject-script.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/inject-script.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/internal/custom-events.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/internal/custom-events.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/internal/dev-server-websocket.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/internal/dev-server-websocket.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/internal/location-watcher.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/internal/location-watcher.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/internal/logger.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/internal/logger.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/match-patterns.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/match-patterns.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/split-shadow-root-css.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/split-shadow-root-css.ts
--------------------------------------------------------------------------------
/packages/wxt/src/utils/storage.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/utils/storage.ts
--------------------------------------------------------------------------------
/packages/wxt/src/version.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/version.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/README.md
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/background-entrypoint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/background-entrypoint.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/content-script-isolated-world-entrypoint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/content-script-isolated-world-entrypoint.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/content-script-main-world-entrypoint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/content-script-main-world-entrypoint.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/mock-browser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/mock-browser.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/reload-html.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/reload-html.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/tsconfig.json
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/unlisted-script-entrypoint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/unlisted-script-entrypoint.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/utils/keep-service-worker-alive.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/utils/keep-service-worker-alive.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/utils/reload-content-scripts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/utils/reload-content-scripts.ts
--------------------------------------------------------------------------------
/packages/wxt/src/virtual/virtual-module-globals.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/src/virtual/virtual-module-globals.d.ts
--------------------------------------------------------------------------------
/packages/wxt/src/vite-builder-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/packages/wxt/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/tsconfig.json
--------------------------------------------------------------------------------
/packages/wxt/typedoc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/typedoc.json
--------------------------------------------------------------------------------
/packages/wxt/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/vitest.config.ts
--------------------------------------------------------------------------------
/packages/wxt/vitest.globalSetup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/vitest.globalSetup.ts
--------------------------------------------------------------------------------
/packages/wxt/vitest.setup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/packages/wxt/vitest.setup.ts
--------------------------------------------------------------------------------
/patches/markdown-it-footnote.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/patches/markdown-it-footnote.md
--------------------------------------------------------------------------------
/patches/markdown-it-footnote.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/patches/markdown-it-footnote.patch
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/pnpm-lock.yaml
--------------------------------------------------------------------------------
/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/pnpm-workspace.yaml
--------------------------------------------------------------------------------
/scripts/benchmarks/browser-startup.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/benchmarks/browser-startup.patch
--------------------------------------------------------------------------------
/scripts/benchmarks/browser-startup.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/benchmarks/browser-startup.sh
--------------------------------------------------------------------------------
/scripts/bump-package-version.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/bump-package-version.ts
--------------------------------------------------------------------------------
/scripts/create-github-release.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/create-github-release.ts
--------------------------------------------------------------------------------
/scripts/generate-readmes.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/generate-readmes.sh
--------------------------------------------------------------------------------
/scripts/git.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/git.ts
--------------------------------------------------------------------------------
/scripts/list-unreleased-commits.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/list-unreleased-commits.sh
--------------------------------------------------------------------------------
/scripts/sync-releases.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/sync-releases.ts
--------------------------------------------------------------------------------
/scripts/upgrade-deps.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/scripts/upgrade-deps.ts
--------------------------------------------------------------------------------
/templates/react/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/README.md
--------------------------------------------------------------------------------
/templates/react/_gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/_gitignore
--------------------------------------------------------------------------------
/templates/react/assets/react.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/assets/react.svg
--------------------------------------------------------------------------------
/templates/react/entrypoints/background.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/entrypoints/background.ts
--------------------------------------------------------------------------------
/templates/react/entrypoints/content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/entrypoints/content.ts
--------------------------------------------------------------------------------
/templates/react/entrypoints/popup/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/entrypoints/popup/App.css
--------------------------------------------------------------------------------
/templates/react/entrypoints/popup/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/entrypoints/popup/App.tsx
--------------------------------------------------------------------------------
/templates/react/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/templates/react/entrypoints/popup/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/entrypoints/popup/main.tsx
--------------------------------------------------------------------------------
/templates/react/entrypoints/popup/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/entrypoints/popup/style.css
--------------------------------------------------------------------------------
/templates/react/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/package.json
--------------------------------------------------------------------------------
/templates/react/public/icon/128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/public/icon/128.png
--------------------------------------------------------------------------------
/templates/react/public/icon/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/public/icon/16.png
--------------------------------------------------------------------------------
/templates/react/public/icon/32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/public/icon/32.png
--------------------------------------------------------------------------------
/templates/react/public/icon/48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/public/icon/48.png
--------------------------------------------------------------------------------
/templates/react/public/icon/96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/public/icon/96.png
--------------------------------------------------------------------------------
/templates/react/public/wxt.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/public/wxt.svg
--------------------------------------------------------------------------------
/templates/react/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/tsconfig.json
--------------------------------------------------------------------------------
/templates/react/wxt.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/react/wxt.config.ts
--------------------------------------------------------------------------------
/templates/solid/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/README.md
--------------------------------------------------------------------------------
/templates/solid/_gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/_gitignore
--------------------------------------------------------------------------------
/templates/solid/assets/solid.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/assets/solid.svg
--------------------------------------------------------------------------------
/templates/solid/entrypoints/background.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/entrypoints/background.ts
--------------------------------------------------------------------------------
/templates/solid/entrypoints/content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/entrypoints/content.ts
--------------------------------------------------------------------------------
/templates/solid/entrypoints/popup/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/entrypoints/popup/App.css
--------------------------------------------------------------------------------
/templates/solid/entrypoints/popup/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/entrypoints/popup/App.tsx
--------------------------------------------------------------------------------
/templates/solid/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/templates/solid/entrypoints/popup/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/entrypoints/popup/main.tsx
--------------------------------------------------------------------------------
/templates/solid/entrypoints/popup/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/entrypoints/popup/style.css
--------------------------------------------------------------------------------
/templates/solid/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/package.json
--------------------------------------------------------------------------------
/templates/solid/public/icon/128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/public/icon/128.png
--------------------------------------------------------------------------------
/templates/solid/public/icon/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/public/icon/16.png
--------------------------------------------------------------------------------
/templates/solid/public/icon/32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/public/icon/32.png
--------------------------------------------------------------------------------
/templates/solid/public/icon/48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/public/icon/48.png
--------------------------------------------------------------------------------
/templates/solid/public/icon/96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/public/icon/96.png
--------------------------------------------------------------------------------
/templates/solid/public/wxt.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/public/wxt.svg
--------------------------------------------------------------------------------
/templates/solid/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/tsconfig.json
--------------------------------------------------------------------------------
/templates/solid/wxt.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/solid/wxt.config.ts
--------------------------------------------------------------------------------
/templates/svelte/.vscode/extensions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/.vscode/extensions.json
--------------------------------------------------------------------------------
/templates/svelte/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/README.md
--------------------------------------------------------------------------------
/templates/svelte/_gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/_gitignore
--------------------------------------------------------------------------------
/templates/svelte/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/package.json
--------------------------------------------------------------------------------
/templates/svelte/public/icon/128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/public/icon/128.png
--------------------------------------------------------------------------------
/templates/svelte/public/icon/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/public/icon/16.png
--------------------------------------------------------------------------------
/templates/svelte/public/icon/32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/public/icon/32.png
--------------------------------------------------------------------------------
/templates/svelte/public/icon/48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/public/icon/48.png
--------------------------------------------------------------------------------
/templates/svelte/public/icon/96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/public/icon/96.png
--------------------------------------------------------------------------------
/templates/svelte/public/wxt.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/public/wxt.svg
--------------------------------------------------------------------------------
/templates/svelte/src/assets/svelte.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/src/assets/svelte.svg
--------------------------------------------------------------------------------
/templates/svelte/src/entrypoints/background.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/src/entrypoints/background.ts
--------------------------------------------------------------------------------
/templates/svelte/src/entrypoints/content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/src/entrypoints/content.ts
--------------------------------------------------------------------------------
/templates/svelte/src/entrypoints/popup/App.svelte:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/src/entrypoints/popup/App.svelte
--------------------------------------------------------------------------------
/templates/svelte/src/entrypoints/popup/app.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/src/entrypoints/popup/app.css
--------------------------------------------------------------------------------
/templates/svelte/src/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/src/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/templates/svelte/src/entrypoints/popup/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/src/entrypoints/popup/main.ts
--------------------------------------------------------------------------------
/templates/svelte/src/lib/Counter.svelte:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/src/lib/Counter.svelte
--------------------------------------------------------------------------------
/templates/svelte/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/tsconfig.json
--------------------------------------------------------------------------------
/templates/svelte/wxt-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/templates/svelte/wxt.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/svelte/wxt.config.ts
--------------------------------------------------------------------------------
/templates/vanilla/_gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/_gitignore
--------------------------------------------------------------------------------
/templates/vanilla/assets/typescript.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/assets/typescript.svg
--------------------------------------------------------------------------------
/templates/vanilla/components/counter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/components/counter.ts
--------------------------------------------------------------------------------
/templates/vanilla/entrypoints/background.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/entrypoints/background.ts
--------------------------------------------------------------------------------
/templates/vanilla/entrypoints/content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/entrypoints/content.ts
--------------------------------------------------------------------------------
/templates/vanilla/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/templates/vanilla/entrypoints/popup/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/entrypoints/popup/main.ts
--------------------------------------------------------------------------------
/templates/vanilla/entrypoints/popup/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/entrypoints/popup/style.css
--------------------------------------------------------------------------------
/templates/vanilla/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/package.json
--------------------------------------------------------------------------------
/templates/vanilla/public/icon/128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/public/icon/128.png
--------------------------------------------------------------------------------
/templates/vanilla/public/icon/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/public/icon/16.png
--------------------------------------------------------------------------------
/templates/vanilla/public/icon/32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/public/icon/32.png
--------------------------------------------------------------------------------
/templates/vanilla/public/icon/48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/public/icon/48.png
--------------------------------------------------------------------------------
/templates/vanilla/public/icon/96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/public/icon/96.png
--------------------------------------------------------------------------------
/templates/vanilla/public/wxt.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/public/wxt.svg
--------------------------------------------------------------------------------
/templates/vanilla/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./.wxt/tsconfig.json"
3 | }
4 |
--------------------------------------------------------------------------------
/templates/vanilla/wxt.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vanilla/wxt.config.ts
--------------------------------------------------------------------------------
/templates/vue/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["Vue.volar"]
3 | }
4 |
--------------------------------------------------------------------------------
/templates/vue/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/README.md
--------------------------------------------------------------------------------
/templates/vue/_gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/_gitignore
--------------------------------------------------------------------------------
/templates/vue/assets/vue.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/assets/vue.svg
--------------------------------------------------------------------------------
/templates/vue/components/HelloWorld.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/components/HelloWorld.vue
--------------------------------------------------------------------------------
/templates/vue/entrypoints/background.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/entrypoints/background.ts
--------------------------------------------------------------------------------
/templates/vue/entrypoints/content.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/entrypoints/content.ts
--------------------------------------------------------------------------------
/templates/vue/entrypoints/popup/App.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/entrypoints/popup/App.vue
--------------------------------------------------------------------------------
/templates/vue/entrypoints/popup/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/entrypoints/popup/index.html
--------------------------------------------------------------------------------
/templates/vue/entrypoints/popup/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/entrypoints/popup/main.ts
--------------------------------------------------------------------------------
/templates/vue/entrypoints/popup/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/entrypoints/popup/style.css
--------------------------------------------------------------------------------
/templates/vue/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/package.json
--------------------------------------------------------------------------------
/templates/vue/public/icon/128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/public/icon/128.png
--------------------------------------------------------------------------------
/templates/vue/public/icon/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/public/icon/16.png
--------------------------------------------------------------------------------
/templates/vue/public/icon/32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/public/icon/32.png
--------------------------------------------------------------------------------
/templates/vue/public/icon/48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/public/icon/48.png
--------------------------------------------------------------------------------
/templates/vue/public/icon/96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/public/icon/96.png
--------------------------------------------------------------------------------
/templates/vue/public/wxt.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/public/wxt.svg
--------------------------------------------------------------------------------
/templates/vue/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./.wxt/tsconfig.json"
3 | }
4 |
--------------------------------------------------------------------------------
/templates/vue/wxt.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/templates/vue/wxt.config.ts
--------------------------------------------------------------------------------
/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/tsconfig.base.json
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wxt-dev/wxt/HEAD/tsconfig.json
--------------------------------------------------------------------------------