├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ ├── github-release.yml │ └── publish.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── MIGRATION.md ├── README.md ├── client.d.ts ├── client.mjs ├── package.json ├── pnpm-lock.yaml ├── src ├── devBuilder │ ├── devBuilder.ts │ ├── devBuilderManifestV2.ts │ └── devBuilderManifestV3.ts ├── index.ts ├── manifestParser │ ├── manifestParser.ts │ ├── manifestParserFactory.ts │ ├── manifestV2.ts │ └── manifestV3.ts ├── middleware │ └── viteClientModifier.ts └── utils │ ├── addHmrSupportToCsp.ts │ ├── file.ts │ ├── getAdditionalInputAsWebAccessibleResource.ts │ ├── getNormalizedAdditionalInput.ts │ ├── loader.ts │ ├── rollup.ts │ ├── virtualModule.ts │ └── vite.ts ├── test ├── manifest │ ├── __snapshots__ │ │ ├── additionalInputsHtml.v2.test.ts.snap │ │ ├── additionalInputsHtml.v3.test.ts.snap │ │ ├── additionalInputsScriptsChunkedImport.v2.test.ts.snap │ │ ├── additionalInputsScriptsChunkedImport.v3.test.ts.snap │ │ ├── additionalInputsScriptsNoImport.v2.test.ts.snap │ │ ├── additionalInputsScriptsNoImport.v3.test.ts.snap │ │ ├── additionalInputsScriptsTypes.v2.test.ts.snap │ │ ├── additionalInputsScriptsTypes.v3.test.ts.snap │ │ ├── additionalInputsScriptsUnchunkedImport.v2.test.ts.snap │ │ ├── additionalInputsScriptsUnchunkedImport.v3.test.ts.snap │ │ ├── additionalInputsStylesTypes.v2.test.ts.snap │ │ ├── additionalInputsStylesTypes.v3.test.ts.snap │ │ ├── additionalInputsWebAccessible.v2.test.ts.snap │ │ ├── additionalInputsWebAccessible.v3.test.ts.snap │ │ ├── additionalInputsWebAccessibleExcludeEntryFile.v2.test.ts.snap │ │ ├── additionalInputsWebAccessibleExcludeEntryFile.v3.test.ts.snap │ │ ├── backgroundHtml.v2.test.ts.snap │ │ ├── backgroundScript.v2.test.ts.snap │ │ ├── backgroundServiceWorker.v3.test.ts.snap │ │ ├── backgroundServiceWorkerRelative.v3.test.ts.snap │ │ ├── backgroundServiceWorkerRoot.v3.test.ts.snap │ │ ├── chromeUrlOverridesHtmlBookmarks.v2.test.ts.snap │ │ ├── chromeUrlOverridesHtmlBookmarks.v3.test.ts.snap │ │ ├── chromeUrlOverridesHtmlHistory.v2.test.ts.snap │ │ ├── chromeUrlOverridesHtmlHistory.v3.test.ts.snap │ │ ├── chromeUrlOverridesHtmlNewTab.v2.test.ts.snap │ │ ├── chromeUrlOverridesHtmlNewTab.v3.test.ts.snap │ │ ├── chunkCssRewrite.v2.test.ts.snap │ │ ├── chunkCssRewrite.v3.test.ts.snap │ │ ├── contentCss.v2.test.ts.snap │ │ ├── contentCss.v3.test.ts.snap │ │ ├── contentScriptPaths.v2.test.ts.snap │ │ ├── contentScriptPaths.v3.test.ts.snap │ │ ├── contentScriptTypes.v2.test.ts.snap │ │ ├── contentScriptTypes.v3.test.ts.snap │ │ ├── contentWithChunkedImport.v2.test.ts.snap │ │ ├── contentWithChunkedImport.v3.test.ts.snap │ │ ├── contentWithDynamicImport.v2.test.ts.snap │ │ ├── contentWithDynamicImport.v3.test.ts.snap │ │ ├── contentWithNoImports.v2.test.ts.snap │ │ ├── contentWithNoImports.v3.test.ts.snap │ │ ├── contentWithSameScriptName.v2.test.ts.snap │ │ ├── contentWithSameScriptName.v3.test.ts.snap │ │ ├── contentWithUnchunkedImport.v2.test.ts.snap │ │ ├── contentWithUnchunkedImport.v3.test.ts.snap │ │ ├── devtoolsHtml.v2.test.ts.snap │ │ ├── devtoolsHtml.v3.test.ts.snap │ │ ├── fullExtension.v2.test.ts.snap │ │ ├── fullExtension.v3.test.ts.snap │ │ ├── htmlUrlProperties.v2.test.ts.snap │ │ ├── htmlUrlProperties.v3.test.ts.snap │ │ ├── optimizeWebAccessibleResourcesDisabled.v2.test.ts.snap │ │ ├── optimizeWebAccessibleResourcesDisabled.v3.test.ts.snap │ │ ├── optimizeWebAccessibleResourcesEnabled.v2.test.ts.snap │ │ ├── optimizeWebAccessibleResourcesEnabled.v3.test.ts.snap │ │ ├── optionsHtml.v2.test.ts.snap │ │ ├── optionsHtml.v3.test.ts.snap │ │ ├── popupHtml.v2.test.ts.snap │ │ ├── popupHtml.v3.test.ts.snap │ │ ├── sidePanelHtml.v3.test.ts.snap │ │ ├── useDynamicUrlWebAccessibleResourcesDisabled.v3.test.ts.snap │ │ ├── useDynamicUrlWebAccessibleResourcesEnabled.v3.test.ts.snap │ │ └── useDynamicUrlWebAccessibleResourcesUndefined.v3.test.ts.snap │ ├── additionalInputsHtml.v2.test.ts │ ├── additionalInputsHtml.v3.test.ts │ ├── additionalInputsScriptsChunkedImport.v2.test.ts │ ├── additionalInputsScriptsChunkedImport.v3.test.ts │ ├── additionalInputsScriptsNoImport.v2.test.ts │ ├── additionalInputsScriptsNoImport.v3.test.ts │ ├── additionalInputsScriptsTypes.v2.test.ts │ ├── additionalInputsScriptsTypes.v3.test.ts │ ├── additionalInputsScriptsUnchunkedImport.v2.test.ts │ ├── additionalInputsScriptsUnchunkedImport.v3.test.ts │ ├── additionalInputsStylesTypes.v2.test.ts │ ├── additionalInputsStylesTypes.v3.test.ts │ ├── additionalInputsWebAccessible.v2.test.ts │ ├── additionalInputsWebAccessible.v3.test.ts │ ├── additionalInputsWebAccessibleExcludeEntryFile.v2.test.ts │ ├── additionalInputsWebAccessibleExcludeEntryFile.v3.test.ts │ ├── backgroundHtml.v2.test.ts │ ├── backgroundScript.v2.test.ts │ ├── backgroundServiceWorker.v3.test.ts │ ├── backgroundServiceWorkerRelative.v3.test.ts │ ├── backgroundServiceWorkerRoot.v3.test.ts │ ├── chromeUrlOverridesHtmlBookmarks.v2.test.ts │ ├── chromeUrlOverridesHtmlBookmarks.v3.test.ts │ ├── chromeUrlOverridesHtmlHistory.v2.test.ts │ ├── chromeUrlOverridesHtmlHistory.v3.test.ts │ ├── chromeUrlOverridesHtmlNewTab.v2.test.ts │ ├── chromeUrlOverridesHtmlNewTab.v3.test.ts │ ├── chunkCssRewrite.v2.test.ts │ ├── chunkCssRewrite.v3.test.ts │ ├── contentCss.v2.test.ts │ ├── contentCss.v3.test.ts │ ├── contentScriptPaths.v2.test.ts │ ├── contentScriptPaths.v3.test.ts │ ├── contentScriptTypes.v2.test.ts │ ├── contentScriptTypes.v3.test.ts │ ├── contentWithChunkedImport.v2.test.ts │ ├── contentWithChunkedImport.v3.test.ts │ ├── contentWithDynamicImport.v2.test.ts │ ├── contentWithDynamicImport.v3.test.ts │ ├── contentWithNoImports.v2.test.ts │ ├── contentWithNoImports.v3.test.ts │ ├── contentWithSameScriptName.v2.test.ts │ ├── contentWithSameScriptName.v3.test.ts │ ├── contentWithUnchunkedImport.v2.test.ts │ ├── contentWithUnchunkedImport.v3.test.ts │ ├── devtoolsHtml.v2.test.ts │ ├── devtoolsHtml.v3.test.ts │ ├── fullExtension.v2.test.ts │ ├── fullExtension.v3.test.ts │ ├── htmlUrlProperties.v2.test.ts │ ├── htmlUrlProperties.v3.test.ts │ ├── manifestTestUtils.ts │ ├── optimizeWebAccessibleResourcesDisabled.v2.test.ts │ ├── optimizeWebAccessibleResourcesDisabled.v3.test.ts │ ├── optimizeWebAccessibleResourcesEnabled.v2.test.ts │ ├── optimizeWebAccessibleResourcesEnabled.v3.test.ts │ ├── optionsHtml.v2.test.ts │ ├── optionsHtml.v3.test.ts │ ├── popupHtml.v2.test.ts │ ├── popupHtml.v3.test.ts │ ├── resources │ │ ├── additionalInputsHtml │ │ │ ├── html.html │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── additionalInputsScriptsChunkedImport │ │ │ ├── script1.js │ │ │ └── script2.js │ │ ├── additionalInputsScriptsNoImport │ │ │ ├── script1.js │ │ │ └── script2.js │ │ ├── additionalInputsScriptsTypes │ │ │ ├── script1.js │ │ │ └── script2.ts │ │ ├── additionalInputsScriptsUnchunkedImport │ │ │ ├── script1.js │ │ │ └── script2.js │ │ ├── additionalInputsStylesTypes │ │ │ ├── style1.css │ │ │ └── style2.scss │ │ ├── additionalInputsWebAccessible │ │ │ ├── chunkedScript1.js │ │ │ ├── chunkedScript2.js │ │ │ ├── chunkedScript3.js │ │ │ ├── script1.js │ │ │ ├── script2.js │ │ │ ├── script3.js │ │ │ ├── script4.js │ │ │ ├── script5.ts │ │ │ ├── script6.js │ │ │ └── script7.js │ │ ├── backgroundHtml │ │ │ ├── background.html │ │ │ └── background.js │ │ ├── backgroundScript │ │ │ ├── background.html │ │ │ └── background.js │ │ ├── backgroundServiceWorker │ │ │ └── serviceWorker.js │ │ ├── chromeUrlOverridesHtml │ │ │ ├── bookmarks.html │ │ │ ├── chromeUrlOverridesHtml.js │ │ │ ├── devtools.html │ │ │ ├── history.html │ │ │ └── newtab.html │ │ ├── chunkCssRewrite │ │ │ ├── content1.css │ │ │ ├── content1.js │ │ │ ├── content2.css │ │ │ ├── content2.js │ │ │ ├── contentNoCss.js │ │ │ └── contentShared.css │ │ ├── contentCss │ │ │ ├── content.js │ │ │ ├── content1.css │ │ │ └── content2.scss │ │ ├── contentScriptTypes │ │ │ ├── content1.js │ │ │ └── content2.ts │ │ ├── contentWithChunkedImport │ │ │ ├── content1.js │ │ │ └── content2.js │ │ ├── contentWithDynamicImport │ │ │ ├── content1.js │ │ │ └── content2.js │ │ ├── contentWithNoImports │ │ │ └── content.js │ │ ├── contentWithSameScriptName │ │ │ ├── content1 │ │ │ │ └── content.js │ │ │ └── content2 │ │ │ │ └── content.js │ │ ├── contentWithUnchunkedImport │ │ │ └── content.js │ │ ├── devtoolsHtml │ │ │ ├── devtools.html │ │ │ └── devtools.js │ │ ├── fullExtension │ │ │ └── src │ │ │ │ ├── assets │ │ │ │ └── logo.svg │ │ │ │ ├── entries │ │ │ │ ├── background │ │ │ │ │ └── main.js │ │ │ │ ├── contentScript │ │ │ │ │ ├── primary │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── style.css │ │ │ │ │ └── renderContent.js │ │ │ │ ├── options │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.js │ │ │ │ │ └── style.css │ │ │ │ └── popup │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.js │ │ │ │ │ └── style.css │ │ │ │ └── lib.js │ │ ├── htmlUrlProperties │ │ │ ├── devtools.html │ │ │ ├── devtools.js │ │ │ ├── options.html │ │ │ ├── options.js │ │ │ ├── popup.html │ │ │ └── popup.js │ │ ├── optimizeWebAccessibleResources │ │ │ ├── content1.js │ │ │ ├── content2.js │ │ │ ├── script1.js │ │ │ └── script2.js │ │ ├── optionsHtml │ │ │ ├── options.html │ │ │ └── options.js │ │ ├── popupHtml │ │ │ ├── popup.html │ │ │ └── popup.js │ │ ├── shared │ │ │ └── log.js │ │ ├── sidePanelHtml │ │ │ ├── sidepanel.html │ │ │ └── sidepanel.js │ │ └── useDynamicUrlWebAccessibleResources │ │ │ ├── content1.js │ │ │ ├── content2.js │ │ │ ├── script1.js │ │ │ └── script2.js │ ├── sidePanelHtml.v3.test.ts │ ├── useDynamicUrlWebAccessibleResourcesDisabled.v3.test.ts │ ├── useDynamicUrlWebAccessibleResourcesEnabled.v3.test.ts │ └── useDynamicUrlWebAccessibleResourcesUndefined.v3.test.ts └── utils │ ├── addHmrSupportToCsp.test.ts │ └── rollup.test.ts ├── tsconfig.json └── types └── index.d.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/.github/workflows/github-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/node_modules/ 2 | **/dist/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | pnpm exec lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/node_modules/ 2 | pnpm-lock.yaml 3 | dist/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/README.md -------------------------------------------------------------------------------- /client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/client.d.ts -------------------------------------------------------------------------------- /client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/client.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/devBuilder/devBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/devBuilder/devBuilder.ts -------------------------------------------------------------------------------- /src/devBuilder/devBuilderManifestV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/devBuilder/devBuilderManifestV2.ts -------------------------------------------------------------------------------- /src/devBuilder/devBuilderManifestV3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/devBuilder/devBuilderManifestV3.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/manifestParser/manifestParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/manifestParser/manifestParser.ts -------------------------------------------------------------------------------- /src/manifestParser/manifestParserFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/manifestParser/manifestParserFactory.ts -------------------------------------------------------------------------------- /src/manifestParser/manifestV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/manifestParser/manifestV2.ts -------------------------------------------------------------------------------- /src/manifestParser/manifestV3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/manifestParser/manifestV3.ts -------------------------------------------------------------------------------- /src/middleware/viteClientModifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/middleware/viteClientModifier.ts -------------------------------------------------------------------------------- /src/utils/addHmrSupportToCsp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/utils/addHmrSupportToCsp.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/getAdditionalInputAsWebAccessibleResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/utils/getAdditionalInputAsWebAccessibleResource.ts -------------------------------------------------------------------------------- /src/utils/getNormalizedAdditionalInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/utils/getNormalizedAdditionalInput.ts -------------------------------------------------------------------------------- /src/utils/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/utils/loader.ts -------------------------------------------------------------------------------- /src/utils/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/utils/rollup.ts -------------------------------------------------------------------------------- /src/utils/virtualModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/utils/virtualModule.ts -------------------------------------------------------------------------------- /src/utils/vite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/src/utils/vite.ts -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsHtml.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsHtml.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsHtml.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsHtml.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsScriptsChunkedImport.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsScriptsChunkedImport.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsScriptsChunkedImport.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsScriptsChunkedImport.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsScriptsNoImport.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsScriptsNoImport.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsScriptsNoImport.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsScriptsNoImport.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsScriptsTypes.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsScriptsTypes.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsScriptsTypes.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsScriptsTypes.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsScriptsUnchunkedImport.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsScriptsUnchunkedImport.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsScriptsUnchunkedImport.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsScriptsUnchunkedImport.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsStylesTypes.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsStylesTypes.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsStylesTypes.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsStylesTypes.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsWebAccessible.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsWebAccessible.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsWebAccessible.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsWebAccessible.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsWebAccessibleExcludeEntryFile.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsWebAccessibleExcludeEntryFile.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/additionalInputsWebAccessibleExcludeEntryFile.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/additionalInputsWebAccessibleExcludeEntryFile.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/backgroundHtml.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/backgroundHtml.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/backgroundScript.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/backgroundScript.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/backgroundServiceWorker.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/backgroundServiceWorker.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/backgroundServiceWorkerRelative.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/backgroundServiceWorkerRelative.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/backgroundServiceWorkerRoot.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/backgroundServiceWorkerRoot.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/chromeUrlOverridesHtmlBookmarks.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/chromeUrlOverridesHtmlBookmarks.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/chromeUrlOverridesHtmlBookmarks.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/chromeUrlOverridesHtmlBookmarks.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/chromeUrlOverridesHtmlHistory.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/chromeUrlOverridesHtmlHistory.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/chromeUrlOverridesHtmlHistory.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/chromeUrlOverridesHtmlHistory.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/chromeUrlOverridesHtmlNewTab.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/chromeUrlOverridesHtmlNewTab.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/chromeUrlOverridesHtmlNewTab.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/chromeUrlOverridesHtmlNewTab.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/chunkCssRewrite.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/chunkCssRewrite.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/chunkCssRewrite.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/chunkCssRewrite.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentCss.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentCss.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentCss.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentCss.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentScriptPaths.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentScriptPaths.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentScriptPaths.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentScriptPaths.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentScriptTypes.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentScriptTypes.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentScriptTypes.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentScriptTypes.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithChunkedImport.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithChunkedImport.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithChunkedImport.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithChunkedImport.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithDynamicImport.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithDynamicImport.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithDynamicImport.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithDynamicImport.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithNoImports.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithNoImports.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithNoImports.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithNoImports.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithSameScriptName.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithSameScriptName.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithSameScriptName.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithSameScriptName.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithUnchunkedImport.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithUnchunkedImport.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/contentWithUnchunkedImport.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/contentWithUnchunkedImport.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/devtoolsHtml.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/devtoolsHtml.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/devtoolsHtml.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/devtoolsHtml.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/fullExtension.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/fullExtension.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/fullExtension.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/fullExtension.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/htmlUrlProperties.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/htmlUrlProperties.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/htmlUrlProperties.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/htmlUrlProperties.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/optimizeWebAccessibleResourcesDisabled.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/optimizeWebAccessibleResourcesDisabled.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/optimizeWebAccessibleResourcesDisabled.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/optimizeWebAccessibleResourcesDisabled.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/optimizeWebAccessibleResourcesEnabled.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/optimizeWebAccessibleResourcesEnabled.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/optimizeWebAccessibleResourcesEnabled.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/optimizeWebAccessibleResourcesEnabled.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/optionsHtml.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/optionsHtml.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/optionsHtml.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/optionsHtml.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/popupHtml.v2.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/popupHtml.v2.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/popupHtml.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/popupHtml.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/sidePanelHtml.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/sidePanelHtml.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/useDynamicUrlWebAccessibleResourcesDisabled.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/useDynamicUrlWebAccessibleResourcesDisabled.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/useDynamicUrlWebAccessibleResourcesEnabled.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/useDynamicUrlWebAccessibleResourcesEnabled.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/__snapshots__/useDynamicUrlWebAccessibleResourcesUndefined.v3.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/__snapshots__/useDynamicUrlWebAccessibleResourcesUndefined.v3.test.ts.snap -------------------------------------------------------------------------------- /test/manifest/additionalInputsHtml.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsHtml.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsHtml.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsHtml.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsScriptsChunkedImport.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsScriptsChunkedImport.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsScriptsChunkedImport.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsScriptsChunkedImport.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsScriptsNoImport.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsScriptsNoImport.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsScriptsNoImport.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsScriptsNoImport.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsScriptsTypes.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsScriptsTypes.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsScriptsTypes.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsScriptsTypes.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsScriptsUnchunkedImport.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsScriptsUnchunkedImport.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsScriptsUnchunkedImport.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsScriptsUnchunkedImport.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsStylesTypes.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsStylesTypes.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsStylesTypes.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsStylesTypes.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsWebAccessible.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsWebAccessible.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsWebAccessible.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsWebAccessible.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsWebAccessibleExcludeEntryFile.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsWebAccessibleExcludeEntryFile.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/additionalInputsWebAccessibleExcludeEntryFile.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/additionalInputsWebAccessibleExcludeEntryFile.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/backgroundHtml.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/backgroundHtml.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/backgroundScript.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/backgroundScript.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/backgroundServiceWorker.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/backgroundServiceWorker.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/backgroundServiceWorkerRelative.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/backgroundServiceWorkerRelative.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/backgroundServiceWorkerRoot.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/backgroundServiceWorkerRoot.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/chromeUrlOverridesHtmlBookmarks.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/chromeUrlOverridesHtmlBookmarks.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/chromeUrlOverridesHtmlBookmarks.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/chromeUrlOverridesHtmlBookmarks.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/chromeUrlOverridesHtmlHistory.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/chromeUrlOverridesHtmlHistory.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/chromeUrlOverridesHtmlHistory.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/chromeUrlOverridesHtmlHistory.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/chromeUrlOverridesHtmlNewTab.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/chromeUrlOverridesHtmlNewTab.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/chromeUrlOverridesHtmlNewTab.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/chromeUrlOverridesHtmlNewTab.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/chunkCssRewrite.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/chunkCssRewrite.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/chunkCssRewrite.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/chunkCssRewrite.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/contentCss.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentCss.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/contentCss.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentCss.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/contentScriptPaths.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentScriptPaths.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/contentScriptPaths.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentScriptPaths.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/contentScriptTypes.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentScriptTypes.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/contentScriptTypes.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentScriptTypes.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithChunkedImport.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithChunkedImport.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithChunkedImport.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithChunkedImport.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithDynamicImport.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithDynamicImport.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithDynamicImport.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithDynamicImport.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithNoImports.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithNoImports.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithNoImports.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithNoImports.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithSameScriptName.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithSameScriptName.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithSameScriptName.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithSameScriptName.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithUnchunkedImport.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithUnchunkedImport.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/contentWithUnchunkedImport.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/contentWithUnchunkedImport.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/devtoolsHtml.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/devtoolsHtml.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/devtoolsHtml.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/devtoolsHtml.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/fullExtension.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/fullExtension.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/fullExtension.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/fullExtension.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/htmlUrlProperties.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/htmlUrlProperties.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/htmlUrlProperties.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/htmlUrlProperties.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/manifestTestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/manifestTestUtils.ts -------------------------------------------------------------------------------- /test/manifest/optimizeWebAccessibleResourcesDisabled.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/optimizeWebAccessibleResourcesDisabled.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/optimizeWebAccessibleResourcesDisabled.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/optimizeWebAccessibleResourcesDisabled.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/optimizeWebAccessibleResourcesEnabled.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/optimizeWebAccessibleResourcesEnabled.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/optimizeWebAccessibleResourcesEnabled.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/optimizeWebAccessibleResourcesEnabled.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/optionsHtml.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/optionsHtml.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/optionsHtml.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/optionsHtml.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/popupHtml.v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/popupHtml.v2.test.ts -------------------------------------------------------------------------------- /test/manifest/popupHtml.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/popupHtml.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsHtml/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/additionalInputsHtml/html.html -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsHtml/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/additionalInputsHtml/script.js -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsHtml/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsScriptsChunkedImport/script1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/additionalInputsScriptsChunkedImport/script1.js -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsScriptsChunkedImport/script2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/additionalInputsScriptsChunkedImport/script2.js -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsScriptsNoImport/script1.js: -------------------------------------------------------------------------------- 1 | console.log("script1"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsScriptsNoImport/script2.js: -------------------------------------------------------------------------------- 1 | console.log("script2"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsScriptsTypes/script1.js: -------------------------------------------------------------------------------- 1 | console.log("script1"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsScriptsTypes/script2.ts: -------------------------------------------------------------------------------- 1 | console.log("script2"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsScriptsUnchunkedImport/script1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/additionalInputsScriptsUnchunkedImport/script1.js -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsScriptsUnchunkedImport/script2.js: -------------------------------------------------------------------------------- 1 | console.log("script2"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsStylesTypes/style1.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsStylesTypes/style2.scss: -------------------------------------------------------------------------------- 1 | body { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/chunkedScript1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/additionalInputsWebAccessible/chunkedScript1.js -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/chunkedScript2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/additionalInputsWebAccessible/chunkedScript2.js -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/chunkedScript3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/additionalInputsWebAccessible/chunkedScript3.js -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/script1.js: -------------------------------------------------------------------------------- 1 | console.log("script1"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/script2.js: -------------------------------------------------------------------------------- 1 | console.log("script2"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/script3.js: -------------------------------------------------------------------------------- 1 | console.log("script3"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/script4.js: -------------------------------------------------------------------------------- 1 | console.log("script4"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/script5.ts: -------------------------------------------------------------------------------- 1 | console.log("script5"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/script6.js: -------------------------------------------------------------------------------- 1 | console.log("script6"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/additionalInputsWebAccessible/script7.js: -------------------------------------------------------------------------------- 1 | console.log("script7"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/backgroundHtml/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/backgroundHtml/background.html -------------------------------------------------------------------------------- /test/manifest/resources/backgroundHtml/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/backgroundHtml/background.js -------------------------------------------------------------------------------- /test/manifest/resources/backgroundScript/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/backgroundScript/background.html -------------------------------------------------------------------------------- /test/manifest/resources/backgroundScript/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/backgroundScript/background.js -------------------------------------------------------------------------------- /test/manifest/resources/backgroundServiceWorker/serviceWorker.js: -------------------------------------------------------------------------------- 1 | console.log("serviceWorker"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/chromeUrlOverridesHtml/bookmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/chromeUrlOverridesHtml/bookmarks.html -------------------------------------------------------------------------------- /test/manifest/resources/chromeUrlOverridesHtml/chromeUrlOverridesHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/chromeUrlOverridesHtml/chromeUrlOverridesHtml.js -------------------------------------------------------------------------------- /test/manifest/resources/chromeUrlOverridesHtml/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/chromeUrlOverridesHtml/devtools.html -------------------------------------------------------------------------------- /test/manifest/resources/chromeUrlOverridesHtml/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/chromeUrlOverridesHtml/history.html -------------------------------------------------------------------------------- /test/manifest/resources/chromeUrlOverridesHtml/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/chromeUrlOverridesHtml/newtab.html -------------------------------------------------------------------------------- /test/manifest/resources/chunkCssRewrite/content1.css: -------------------------------------------------------------------------------- 1 | #content1 { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /test/manifest/resources/chunkCssRewrite/content1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/chunkCssRewrite/content1.js -------------------------------------------------------------------------------- /test/manifest/resources/chunkCssRewrite/content2.css: -------------------------------------------------------------------------------- 1 | #content2 { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /test/manifest/resources/chunkCssRewrite/content2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/chunkCssRewrite/content2.js -------------------------------------------------------------------------------- /test/manifest/resources/chunkCssRewrite/contentNoCss.js: -------------------------------------------------------------------------------- 1 | console.log(import.meta.PLUGIN_WEB_EXT_CHUNK_CSS_PATHS); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/chunkCssRewrite/contentShared.css: -------------------------------------------------------------------------------- 1 | #contentShared { 2 | display: flex; 3 | } 4 | -------------------------------------------------------------------------------- /test/manifest/resources/contentCss/content.js: -------------------------------------------------------------------------------- 1 | console.log("content"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/contentCss/content1.css: -------------------------------------------------------------------------------- 1 | .css { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/manifest/resources/contentCss/content2.scss: -------------------------------------------------------------------------------- 1 | .css { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/manifest/resources/contentScriptTypes/content1.js: -------------------------------------------------------------------------------- 1 | console.log("content1"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/contentScriptTypes/content2.ts: -------------------------------------------------------------------------------- 1 | console.log("content2"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/contentWithChunkedImport/content1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/contentWithChunkedImport/content1.js -------------------------------------------------------------------------------- /test/manifest/resources/contentWithChunkedImport/content2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/contentWithChunkedImport/content2.js -------------------------------------------------------------------------------- /test/manifest/resources/contentWithDynamicImport/content1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/contentWithDynamicImport/content1.js -------------------------------------------------------------------------------- /test/manifest/resources/contentWithDynamicImport/content2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/contentWithDynamicImport/content2.js -------------------------------------------------------------------------------- /test/manifest/resources/contentWithNoImports/content.js: -------------------------------------------------------------------------------- 1 | console.log("content"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/contentWithSameScriptName/content1/content.js: -------------------------------------------------------------------------------- 1 | console.log("content1"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/contentWithSameScriptName/content2/content.js: -------------------------------------------------------------------------------- 1 | console.log("content2"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/contentWithUnchunkedImport/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/contentWithUnchunkedImport/content.js -------------------------------------------------------------------------------- /test/manifest/resources/devtoolsHtml/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/devtoolsHtml/devtools.html -------------------------------------------------------------------------------- /test/manifest/resources/devtoolsHtml/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/devtoolsHtml/devtools.js -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/assets/logo.svg -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/background/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/background/main.js -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/contentScript/primary/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/contentScript/primary/main.js -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/contentScript/primary/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/contentScript/primary/style.css -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/contentScript/renderContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/contentScript/renderContent.js -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/options/index.html -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/options/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/options/main.js -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/options/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/options/style.css -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/popup/index.html -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/popup/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/popup/main.js -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/entries/popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/fullExtension/src/entries/popup/style.css -------------------------------------------------------------------------------- /test/manifest/resources/fullExtension/src/lib.js: -------------------------------------------------------------------------------- 1 | console.log("lib.js"); 2 | -------------------------------------------------------------------------------- /test/manifest/resources/htmlUrlProperties/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/htmlUrlProperties/devtools.html -------------------------------------------------------------------------------- /test/manifest/resources/htmlUrlProperties/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/htmlUrlProperties/devtools.js -------------------------------------------------------------------------------- /test/manifest/resources/htmlUrlProperties/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/htmlUrlProperties/options.html -------------------------------------------------------------------------------- /test/manifest/resources/htmlUrlProperties/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/htmlUrlProperties/options.js -------------------------------------------------------------------------------- /test/manifest/resources/htmlUrlProperties/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/htmlUrlProperties/popup.html -------------------------------------------------------------------------------- /test/manifest/resources/htmlUrlProperties/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/htmlUrlProperties/popup.js -------------------------------------------------------------------------------- /test/manifest/resources/optimizeWebAccessibleResources/content1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/optimizeWebAccessibleResources/content1.js -------------------------------------------------------------------------------- /test/manifest/resources/optimizeWebAccessibleResources/content2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/optimizeWebAccessibleResources/content2.js -------------------------------------------------------------------------------- /test/manifest/resources/optimizeWebAccessibleResources/script1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/optimizeWebAccessibleResources/script1.js -------------------------------------------------------------------------------- /test/manifest/resources/optimizeWebAccessibleResources/script2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/optimizeWebAccessibleResources/script2.js -------------------------------------------------------------------------------- /test/manifest/resources/optionsHtml/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/optionsHtml/options.html -------------------------------------------------------------------------------- /test/manifest/resources/optionsHtml/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/optionsHtml/options.js -------------------------------------------------------------------------------- /test/manifest/resources/popupHtml/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/popupHtml/popup.html -------------------------------------------------------------------------------- /test/manifest/resources/popupHtml/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/popupHtml/popup.js -------------------------------------------------------------------------------- /test/manifest/resources/shared/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/shared/log.js -------------------------------------------------------------------------------- /test/manifest/resources/sidePanelHtml/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/sidePanelHtml/sidepanel.html -------------------------------------------------------------------------------- /test/manifest/resources/sidePanelHtml/sidepanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/sidePanelHtml/sidepanel.js -------------------------------------------------------------------------------- /test/manifest/resources/useDynamicUrlWebAccessibleResources/content1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/useDynamicUrlWebAccessibleResources/content1.js -------------------------------------------------------------------------------- /test/manifest/resources/useDynamicUrlWebAccessibleResources/content2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/useDynamicUrlWebAccessibleResources/content2.js -------------------------------------------------------------------------------- /test/manifest/resources/useDynamicUrlWebAccessibleResources/script1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/useDynamicUrlWebAccessibleResources/script1.js -------------------------------------------------------------------------------- /test/manifest/resources/useDynamicUrlWebAccessibleResources/script2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/resources/useDynamicUrlWebAccessibleResources/script2.js -------------------------------------------------------------------------------- /test/manifest/sidePanelHtml.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/sidePanelHtml.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/useDynamicUrlWebAccessibleResourcesDisabled.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/useDynamicUrlWebAccessibleResourcesDisabled.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/useDynamicUrlWebAccessibleResourcesEnabled.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/useDynamicUrlWebAccessibleResourcesEnabled.v3.test.ts -------------------------------------------------------------------------------- /test/manifest/useDynamicUrlWebAccessibleResourcesUndefined.v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/manifest/useDynamicUrlWebAccessibleResourcesUndefined.v3.test.ts -------------------------------------------------------------------------------- /test/utils/addHmrSupportToCsp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/utils/addHmrSupportToCsp.test.ts -------------------------------------------------------------------------------- /test/utils/rollup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/test/utils/rollup.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrum/vite-plugin-web-extension/HEAD/types/index.d.ts --------------------------------------------------------------------------------