├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin.ts ├── docs ├── README.de-DE.md ├── README.fr-FR.md ├── README.id-ID.md ├── README.ja-JP.md ├── README.ko-KR.md ├── README.ru-RU.md ├── README.zh-CN.md └── img │ ├── crx-build.png │ ├── crx-install.png │ ├── crx-preview.png │ └── crx-run.png ├── index.spec.ts ├── index.ts ├── mustache ├── .editorconfig.mustache ├── .gitignore.mustache ├── .npmignore.mustache ├── .prettierignore.mustache ├── .prettierrc.mustache ├── CHANGELOG.md.mustache ├── LICENSE.mustache └── README.md.mustache ├── package.json ├── template-alpine-js ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ └── index.js │ ├── manifest.js │ ├── newtab │ │ └── index.js │ ├── options │ │ └── index.js │ ├── popup │ │ └── index.js │ ├── sidepanel │ │ └── index.js │ └── zip.js └── vite.config.js ├── template-alpine-ts ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ └── index.ts │ ├── manifest.ts │ ├── newtab │ │ └── index.ts │ ├── options │ │ └── index.ts │ ├── popup │ │ └── index.ts │ ├── sidepanel │ │ └── index.ts │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-inferno-js ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ ├── index.css │ │ └── index.jsx │ ├── manifest.js │ ├── newtab │ │ ├── NewTab.css │ │ ├── NewTab.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── options │ │ ├── Options.css │ │ ├── Options.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── popup │ │ ├── Popup.css │ │ ├── Popup.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── sidepanel │ │ ├── Sidepanel.css │ │ ├── Sidepanel.jsx │ │ ├── index.css │ │ └── index.jsx │ └── zip.js └── vite.config.js ├── template-inferno-ts ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ ├── index.css │ │ └── index.tsx │ ├── global.d.ts │ ├── manifest.ts │ ├── newtab │ │ ├── NewTab.css │ │ ├── NewTab.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── options │ │ ├── Options.css │ │ ├── Options.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── popup │ │ ├── Popup.css │ │ ├── Popup.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── sidepanel │ │ ├── Sidepanel.css │ │ ├── Sidepanel.tsx │ │ ├── index.css │ │ └── index.tsx │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-lit-js ├── .vscode │ └── extensions.json ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ └── index.js │ ├── index.css │ ├── manifest.js │ ├── newtab │ │ └── index.js │ ├── options │ │ └── index.js │ ├── popup │ │ └── index.js │ ├── sidepanel │ │ └── index.js │ └── zip.js └── vite.config.js ├── template-lit-ts ├── .vscode │ └── extensions.json ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ └── index.ts │ ├── global.d.ts │ ├── index.css │ ├── manifest.ts │ ├── newtab │ │ └── index.ts │ ├── options │ │ └── index.ts │ ├── popup │ │ └── index.ts │ ├── sidepanel │ │ └── index.ts │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-preact-js ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ ├── DevTools.css │ │ ├── DevTools.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── manifest.js │ ├── newtab │ │ ├── NewTab.css │ │ ├── NewTab.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── options │ │ ├── Options.css │ │ ├── Options.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── popup │ │ ├── Popup.css │ │ ├── Popup.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── sidepanel │ │ ├── Sidepanel.css │ │ ├── Sidepanel.jsx │ │ ├── index.css │ │ └── index.jsx │ └── zip.js └── vite.config.js ├── template-preact-ts ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ ├── DevTools.css │ │ ├── DevTools.tsx │ │ ├── index.css │ │ └── index.ts │ ├── global.d.ts │ ├── manifest.ts │ ├── newtab │ │ ├── NewTab.css │ │ ├── NewTab.tsx │ │ ├── index.css │ │ └── index.ts │ ├── options │ │ ├── Options.css │ │ ├── Options.tsx │ │ ├── index.css │ │ └── index.ts │ ├── popup │ │ ├── Popup.css │ │ ├── Popup.tsx │ │ ├── index.css │ │ └── index.ts │ ├── sidepanel │ │ ├── Sidepanel.css │ │ ├── Sidepanel.tsx │ │ ├── index.css │ │ └── index.ts │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-react-js ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ ├── DevTools.css │ │ ├── DevTools.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── manifest.js │ ├── newtab │ │ ├── NewTab.css │ │ ├── NewTab.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── options │ │ ├── Options.css │ │ ├── Options.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── popup │ │ ├── Popup.css │ │ ├── Popup.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── sidepanel │ │ ├── SidePanel.css │ │ ├── SidePanel.jsx │ │ ├── index.css │ │ └── index.jsx │ └── zip.js └── vite.config.js ├── template-react-ts ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ ├── DevTools.css │ │ ├── DevTools.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── global.d.ts │ ├── manifest.ts │ ├── newtab │ │ ├── NewTab.css │ │ ├── NewTab.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── options │ │ ├── Options.css │ │ ├── Options.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── popup │ │ ├── Popup.css │ │ ├── Popup.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── sidepanel │ │ ├── SidePanel.css │ │ ├── SidePanel.tsx │ │ ├── index.css │ │ └── index.tsx │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-solid-js ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ ├── DevTools.css │ │ ├── DevTools.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── manifest.js │ ├── newtab │ │ ├── NewTab.css │ │ ├── NewTab.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── options │ │ ├── Options.css │ │ ├── Options.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── popup │ │ ├── Popup.css │ │ ├── Popup.jsx │ │ ├── index.css │ │ └── index.jsx │ ├── sidepanel │ │ ├── Sidepanel.css │ │ ├── Sidepanel.jsx │ │ ├── index.css │ │ └── index.jsx │ └── zip.js └── vite.config.js ├── template-solid-ts ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ ├── DevTools.css │ │ ├── DevTools.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── global.d.ts │ ├── manifest.ts │ ├── newtab │ │ ├── NewTab.css │ │ ├── NewTab.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── options │ │ ├── Options.css │ │ ├── Options.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── popup │ │ ├── Popup.css │ │ ├── Popup.tsx │ │ ├── index.css │ │ └── index.tsx │ ├── sidepanel │ │ ├── Sidepanel.css │ │ ├── Sidepanel.tsx │ │ ├── index.css │ │ └── index.tsx │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-stencil-ts ├── package.json ├── src │ ├── assets │ │ ├── icons │ │ │ ├── logo.ico │ │ │ └── logo.svg │ │ └── img │ │ │ ├── logo-128.png │ │ │ ├── logo-16.png │ │ │ ├── logo-32.png │ │ │ └── logo-48.png │ ├── background │ │ └── index.js │ ├── components.d.ts │ ├── components │ │ ├── devtools-root │ │ │ ├── devtools-root.css │ │ │ └── devtools-root.tsx │ │ ├── newtab-root │ │ │ ├── newtab-root.css │ │ │ └── newtab-root.tsx │ │ ├── options-root │ │ │ ├── options-root.css │ │ │ └── options-root.tsx │ │ ├── popup-root │ │ │ ├── popup-root.css │ │ │ └── popup-root.tsx │ │ └── side-root │ │ │ ├── side-root.css │ │ │ └── side-root.tsx │ ├── contentScript │ │ └── index.js │ ├── devtools.html │ ├── manifest.json │ ├── newtab.html │ ├── options.html │ ├── popup.html │ ├── sidepanel.html │ └── zip.js ├── stencil.config.ts └── tsconfig.json ├── template-svelte-js ├── .vscode │ └── extensions.json ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ ├── DevTools.svelte │ │ └── index.js │ ├── manifest.js │ ├── newtab │ │ ├── NewTab.svelte │ │ └── index.js │ ├── options │ │ ├── Options.svelte │ │ └── index.js │ ├── popup │ │ ├── Popup.svelte │ │ └── index.js │ ├── sidepanel │ │ ├── Sidepanel.svelte │ │ └── index.js │ └── zip.js └── vite.config.js ├── template-svelte-ts ├── .vscode │ └── extensions.json ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ ├── DevTools.svelte │ │ └── index.ts │ ├── global.d.ts │ ├── manifest.ts │ ├── newtab │ │ ├── NewTab.svelte │ │ └── index.ts │ ├── options │ │ ├── Options.svelte │ │ └── index.ts │ ├── popup │ │ ├── Popup.svelte │ │ └── index.ts │ ├── sidepanel │ │ ├── Sidepanel.svelte │ │ └── index.ts │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-ts-tailwind ├── .gitignore ├── LICENSE ├── README.md ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-34.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ ├── index.css │ │ └── index.ts │ ├── global.d.ts │ ├── manifest.ts │ ├── newtab │ │ ├── index.css │ │ └── index.ts │ ├── options │ │ ├── index.css │ │ └── index.ts │ ├── popup │ │ ├── index.css │ │ └── index.ts │ └── sidepanel │ │ ├── index.css │ │ └── index.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-vanilla-js ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ ├── index.css │ │ └── index.js │ ├── manifest.js │ ├── newtab │ │ ├── index.css │ │ └── index.js │ ├── options │ │ ├── index.css │ │ └── index.js │ ├── popup │ │ ├── index.css │ │ └── index.js │ ├── sidepanel │ │ ├── index.css │ │ └── index.js │ └── zip.js └── vite.config.js ├── template-vanilla-ts ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ ├── index.css │ │ └── index.ts │ ├── global.d.ts │ ├── manifest.ts │ ├── newtab │ │ ├── index.css │ │ └── index.ts │ ├── options │ │ ├── index.css │ │ └── index.ts │ ├── popup │ │ ├── index.css │ │ └── index.ts │ ├── sidepanel │ │ ├── index.css │ │ └── index.ts │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── template-vue-js ├── .vscode │ └── extensions.json ├── devtools.html ├── jsconfig.json ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.js │ ├── contentScript │ │ └── index.js │ ├── devtools │ │ ├── DevTools.vue │ │ └── index.js │ ├── manifest.js │ ├── newtab │ │ ├── NewTab.vue │ │ └── index.js │ ├── options │ │ ├── Options.vue │ │ └── index.js │ ├── popup │ │ ├── Popup.vue │ │ └── index.js │ ├── sidepanel │ │ ├── SidePanel.vue │ │ └── index.js │ └── zip.js └── vite.config.js ├── template-vue-ts ├── .vscode │ └── extensions.json ├── devtools.html ├── newtab.html ├── options.html ├── package.json ├── popup.html ├── public │ ├── icons │ │ ├── logo.ico │ │ └── logo.svg │ └── img │ │ ├── logo-128.png │ │ ├── logo-16.png │ │ ├── logo-32.png │ │ └── logo-48.png ├── sidepanel.html ├── src │ ├── assets │ │ └── logo.png │ ├── background │ │ └── index.ts │ ├── contentScript │ │ └── index.ts │ ├── devtools │ │ ├── DevTools.vue │ │ └── index.ts │ ├── global.d.ts │ ├── manifest.ts │ ├── newtab │ │ ├── NewTab.vue │ │ └── index.ts │ ├── options │ │ ├── Options.vue │ │ └── index.ts │ ├── popup │ │ ├── Popup.vue │ │ └── index.ts │ ├── sidepanel │ │ ├── SidePanel.vue │ │ └── index.ts │ └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts └── tsconfig.json /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/README.md -------------------------------------------------------------------------------- /bin.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import './index.js' 4 | -------------------------------------------------------------------------------- /docs/README.de-DE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/README.de-DE.md -------------------------------------------------------------------------------- /docs/README.fr-FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/README.fr-FR.md -------------------------------------------------------------------------------- /docs/README.id-ID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/README.id-ID.md -------------------------------------------------------------------------------- /docs/README.ja-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/README.ja-JP.md -------------------------------------------------------------------------------- /docs/README.ko-KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/README.ko-KR.md -------------------------------------------------------------------------------- /docs/README.ru-RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/README.ru-RU.md -------------------------------------------------------------------------------- /docs/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/README.zh-CN.md -------------------------------------------------------------------------------- /docs/img/crx-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/img/crx-build.png -------------------------------------------------------------------------------- /docs/img/crx-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/img/crx-install.png -------------------------------------------------------------------------------- /docs/img/crx-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/img/crx-preview.png -------------------------------------------------------------------------------- /docs/img/crx-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/docs/img/crx-run.png -------------------------------------------------------------------------------- /index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/index.spec.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/index.ts -------------------------------------------------------------------------------- /mustache/.editorconfig.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/mustache/.editorconfig.mustache -------------------------------------------------------------------------------- /mustache/.gitignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/mustache/.gitignore.mustache -------------------------------------------------------------------------------- /mustache/.npmignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/mustache/.npmignore.mustache -------------------------------------------------------------------------------- /mustache/.prettierignore.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/mustache/.prettierignore.mustache -------------------------------------------------------------------------------- /mustache/.prettierrc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/mustache/.prettierrc.mustache -------------------------------------------------------------------------------- /mustache/CHANGELOG.md.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/mustache/CHANGELOG.md.mustache -------------------------------------------------------------------------------- /mustache/LICENSE.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/mustache/LICENSE.mustache -------------------------------------------------------------------------------- /mustache/README.md.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/mustache/README.md.mustache -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/package.json -------------------------------------------------------------------------------- /template-alpine-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/devtools.html -------------------------------------------------------------------------------- /template-alpine-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-alpine-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/newtab.html -------------------------------------------------------------------------------- /template-alpine-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/options.html -------------------------------------------------------------------------------- /template-alpine-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/package.json -------------------------------------------------------------------------------- /template-alpine-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/popup.html -------------------------------------------------------------------------------- /template-alpine-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-alpine-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-alpine-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-alpine-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-alpine-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-alpine-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-alpine-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/sidepanel.html -------------------------------------------------------------------------------- /template-alpine-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-alpine-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/background/index.js -------------------------------------------------------------------------------- /template-alpine-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-alpine-js/src/devtools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/devtools/index.js -------------------------------------------------------------------------------- /template-alpine-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/manifest.js -------------------------------------------------------------------------------- /template-alpine-js/src/newtab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/newtab/index.js -------------------------------------------------------------------------------- /template-alpine-js/src/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/options/index.js -------------------------------------------------------------------------------- /template-alpine-js/src/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/popup/index.js -------------------------------------------------------------------------------- /template-alpine-js/src/sidepanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/sidepanel/index.js -------------------------------------------------------------------------------- /template-alpine-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/src/zip.js -------------------------------------------------------------------------------- /template-alpine-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-js/vite.config.js -------------------------------------------------------------------------------- /template-alpine-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/devtools.html -------------------------------------------------------------------------------- /template-alpine-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/newtab.html -------------------------------------------------------------------------------- /template-alpine-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/options.html -------------------------------------------------------------------------------- /template-alpine-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/package.json -------------------------------------------------------------------------------- /template-alpine-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/popup.html -------------------------------------------------------------------------------- /template-alpine-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-alpine-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-alpine-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-alpine-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-alpine-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-alpine-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-alpine-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/sidepanel.html -------------------------------------------------------------------------------- /template-alpine-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-alpine-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-alpine-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-alpine-ts/src/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/devtools/index.ts -------------------------------------------------------------------------------- /template-alpine-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-alpine-ts/src/newtab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/newtab/index.ts -------------------------------------------------------------------------------- /template-alpine-ts/src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/options/index.ts -------------------------------------------------------------------------------- /template-alpine-ts/src/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/popup/index.ts -------------------------------------------------------------------------------- /template-alpine-ts/src/sidepanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/sidepanel/index.ts -------------------------------------------------------------------------------- /template-alpine-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/src/zip.js -------------------------------------------------------------------------------- /template-alpine-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/tsconfig.json -------------------------------------------------------------------------------- /template-alpine-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-alpine-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-alpine-ts/vite.config.ts -------------------------------------------------------------------------------- /template-inferno-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/devtools.html -------------------------------------------------------------------------------- /template-inferno-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-inferno-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/newtab.html -------------------------------------------------------------------------------- /template-inferno-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/options.html -------------------------------------------------------------------------------- /template-inferno-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/package.json -------------------------------------------------------------------------------- /template-inferno-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/popup.html -------------------------------------------------------------------------------- /template-inferno-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-inferno-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-inferno-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-inferno-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-inferno-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-inferno-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-inferno-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/sidepanel.html -------------------------------------------------------------------------------- /template-inferno-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-inferno-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/background/index.js -------------------------------------------------------------------------------- /template-inferno-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-inferno-js/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/devtools/index.css -------------------------------------------------------------------------------- /template-inferno-js/src/devtools/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/devtools/index.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/manifest.js -------------------------------------------------------------------------------- /template-inferno-js/src/newtab/NewTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/newtab/NewTab.css -------------------------------------------------------------------------------- /template-inferno-js/src/newtab/NewTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/newtab/NewTab.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/newtab/index.css -------------------------------------------------------------------------------- /template-inferno-js/src/newtab/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/newtab/index.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/options/Options.css -------------------------------------------------------------------------------- /template-inferno-js/src/options/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/options/Options.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/options/index.css -------------------------------------------------------------------------------- /template-inferno-js/src/options/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/options/index.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/popup/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/popup/Popup.css -------------------------------------------------------------------------------- /template-inferno-js/src/popup/Popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/popup/Popup.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/popup/index.css -------------------------------------------------------------------------------- /template-inferno-js/src/popup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/popup/index.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/sidepanel/Sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/sidepanel/Sidepanel.css -------------------------------------------------------------------------------- /template-inferno-js/src/sidepanel/Sidepanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/sidepanel/Sidepanel.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-inferno-js/src/sidepanel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/sidepanel/index.jsx -------------------------------------------------------------------------------- /template-inferno-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/src/zip.js -------------------------------------------------------------------------------- /template-inferno-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-js/vite.config.js -------------------------------------------------------------------------------- /template-inferno-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/devtools.html -------------------------------------------------------------------------------- /template-inferno-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/newtab.html -------------------------------------------------------------------------------- /template-inferno-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/options.html -------------------------------------------------------------------------------- /template-inferno-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/package.json -------------------------------------------------------------------------------- /template-inferno-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/popup.html -------------------------------------------------------------------------------- /template-inferno-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-inferno-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-inferno-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-inferno-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-inferno-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-inferno-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-inferno-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/sidepanel.html -------------------------------------------------------------------------------- /template-inferno-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-inferno-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-inferno-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-inferno-ts/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/devtools/index.css -------------------------------------------------------------------------------- /template-inferno-ts/src/devtools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/devtools/index.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /template-inferno-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-inferno-ts/src/newtab/NewTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/newtab/NewTab.css -------------------------------------------------------------------------------- /template-inferno-ts/src/newtab/NewTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/newtab/NewTab.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/newtab/index.css -------------------------------------------------------------------------------- /template-inferno-ts/src/newtab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/newtab/index.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/options/Options.css -------------------------------------------------------------------------------- /template-inferno-ts/src/options/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/options/Options.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/options/index.css -------------------------------------------------------------------------------- /template-inferno-ts/src/options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/options/index.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/popup/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/popup/Popup.css -------------------------------------------------------------------------------- /template-inferno-ts/src/popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/popup/Popup.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/popup/index.css -------------------------------------------------------------------------------- /template-inferno-ts/src/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/popup/index.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/sidepanel/Sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/sidepanel/Sidepanel.css -------------------------------------------------------------------------------- /template-inferno-ts/src/sidepanel/Sidepanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/sidepanel/Sidepanel.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-inferno-ts/src/sidepanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/sidepanel/index.tsx -------------------------------------------------------------------------------- /template-inferno-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/src/zip.js -------------------------------------------------------------------------------- /template-inferno-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/tsconfig.json -------------------------------------------------------------------------------- /template-inferno-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-inferno-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-inferno-ts/vite.config.ts -------------------------------------------------------------------------------- /template-lit-js/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["bierner.lit-html"] 3 | } 4 | -------------------------------------------------------------------------------- /template-lit-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/devtools.html -------------------------------------------------------------------------------- /template-lit-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-lit-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/newtab.html -------------------------------------------------------------------------------- /template-lit-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/options.html -------------------------------------------------------------------------------- /template-lit-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/package.json -------------------------------------------------------------------------------- /template-lit-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/popup.html -------------------------------------------------------------------------------- /template-lit-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-lit-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-lit-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-lit-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-lit-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-lit-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-lit-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/sidepanel.html -------------------------------------------------------------------------------- /template-lit-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-lit-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/background/index.js -------------------------------------------------------------------------------- /template-lit-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-lit-js/src/devtools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/devtools/index.js -------------------------------------------------------------------------------- /template-lit-js/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/index.css -------------------------------------------------------------------------------- /template-lit-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/manifest.js -------------------------------------------------------------------------------- /template-lit-js/src/newtab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/newtab/index.js -------------------------------------------------------------------------------- /template-lit-js/src/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/options/index.js -------------------------------------------------------------------------------- /template-lit-js/src/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/popup/index.js -------------------------------------------------------------------------------- /template-lit-js/src/sidepanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/sidepanel/index.js -------------------------------------------------------------------------------- /template-lit-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/src/zip.js -------------------------------------------------------------------------------- /template-lit-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-js/vite.config.js -------------------------------------------------------------------------------- /template-lit-ts/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["bierner.lit-html"] 3 | } 4 | -------------------------------------------------------------------------------- /template-lit-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/devtools.html -------------------------------------------------------------------------------- /template-lit-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/newtab.html -------------------------------------------------------------------------------- /template-lit-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/options.html -------------------------------------------------------------------------------- /template-lit-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/package.json -------------------------------------------------------------------------------- /template-lit-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/popup.html -------------------------------------------------------------------------------- /template-lit-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-lit-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-lit-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-lit-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-lit-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-lit-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-lit-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/sidepanel.html -------------------------------------------------------------------------------- /template-lit-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-lit-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-lit-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-lit-ts/src/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/devtools/index.ts -------------------------------------------------------------------------------- /template-lit-ts/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /template-lit-ts/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/index.css -------------------------------------------------------------------------------- /template-lit-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-lit-ts/src/newtab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/newtab/index.ts -------------------------------------------------------------------------------- /template-lit-ts/src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/options/index.ts -------------------------------------------------------------------------------- /template-lit-ts/src/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/popup/index.ts -------------------------------------------------------------------------------- /template-lit-ts/src/sidepanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/sidepanel/index.ts -------------------------------------------------------------------------------- /template-lit-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/src/zip.js -------------------------------------------------------------------------------- /template-lit-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/tsconfig.json -------------------------------------------------------------------------------- /template-lit-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-lit-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-lit-ts/vite.config.ts -------------------------------------------------------------------------------- /template-preact-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/devtools.html -------------------------------------------------------------------------------- /template-preact-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-preact-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/newtab.html -------------------------------------------------------------------------------- /template-preact-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/options.html -------------------------------------------------------------------------------- /template-preact-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/package.json -------------------------------------------------------------------------------- /template-preact-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/popup.html -------------------------------------------------------------------------------- /template-preact-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-preact-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-preact-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-preact-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-preact-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-preact-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-preact-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/sidepanel.html -------------------------------------------------------------------------------- /template-preact-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-preact-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/background/index.js -------------------------------------------------------------------------------- /template-preact-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-preact-js/src/devtools/DevTools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/devtools/DevTools.css -------------------------------------------------------------------------------- /template-preact-js/src/devtools/DevTools.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/devtools/DevTools.jsx -------------------------------------------------------------------------------- /template-preact-js/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/devtools/index.css -------------------------------------------------------------------------------- /template-preact-js/src/devtools/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/devtools/index.jsx -------------------------------------------------------------------------------- /template-preact-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/manifest.js -------------------------------------------------------------------------------- /template-preact-js/src/newtab/NewTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/newtab/NewTab.css -------------------------------------------------------------------------------- /template-preact-js/src/newtab/NewTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/newtab/NewTab.jsx -------------------------------------------------------------------------------- /template-preact-js/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/newtab/index.css -------------------------------------------------------------------------------- /template-preact-js/src/newtab/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/newtab/index.jsx -------------------------------------------------------------------------------- /template-preact-js/src/options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/options/Options.css -------------------------------------------------------------------------------- /template-preact-js/src/options/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/options/Options.jsx -------------------------------------------------------------------------------- /template-preact-js/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/options/index.css -------------------------------------------------------------------------------- /template-preact-js/src/options/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/options/index.jsx -------------------------------------------------------------------------------- /template-preact-js/src/popup/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/popup/Popup.css -------------------------------------------------------------------------------- /template-preact-js/src/popup/Popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/popup/Popup.jsx -------------------------------------------------------------------------------- /template-preact-js/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/popup/index.css -------------------------------------------------------------------------------- /template-preact-js/src/popup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/popup/index.jsx -------------------------------------------------------------------------------- /template-preact-js/src/sidepanel/Sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/sidepanel/Sidepanel.css -------------------------------------------------------------------------------- /template-preact-js/src/sidepanel/Sidepanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/sidepanel/Sidepanel.jsx -------------------------------------------------------------------------------- /template-preact-js/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-preact-js/src/sidepanel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/sidepanel/index.jsx -------------------------------------------------------------------------------- /template-preact-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/src/zip.js -------------------------------------------------------------------------------- /template-preact-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-js/vite.config.js -------------------------------------------------------------------------------- /template-preact-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/devtools.html -------------------------------------------------------------------------------- /template-preact-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/newtab.html -------------------------------------------------------------------------------- /template-preact-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/options.html -------------------------------------------------------------------------------- /template-preact-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/package.json -------------------------------------------------------------------------------- /template-preact-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/popup.html -------------------------------------------------------------------------------- /template-preact-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-preact-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-preact-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-preact-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-preact-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-preact-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-preact-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/sidepanel.html -------------------------------------------------------------------------------- /template-preact-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-preact-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-preact-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-preact-ts/src/devtools/DevTools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/devtools/DevTools.css -------------------------------------------------------------------------------- /template-preact-ts/src/devtools/DevTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/devtools/DevTools.tsx -------------------------------------------------------------------------------- /template-preact-ts/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/devtools/index.css -------------------------------------------------------------------------------- /template-preact-ts/src/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/devtools/index.ts -------------------------------------------------------------------------------- /template-preact-ts/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | import JSX = preact.JSX 4 | -------------------------------------------------------------------------------- /template-preact-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-preact-ts/src/newtab/NewTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/newtab/NewTab.css -------------------------------------------------------------------------------- /template-preact-ts/src/newtab/NewTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/newtab/NewTab.tsx -------------------------------------------------------------------------------- /template-preact-ts/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/newtab/index.css -------------------------------------------------------------------------------- /template-preact-ts/src/newtab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/newtab/index.ts -------------------------------------------------------------------------------- /template-preact-ts/src/options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/options/Options.css -------------------------------------------------------------------------------- /template-preact-ts/src/options/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/options/Options.tsx -------------------------------------------------------------------------------- /template-preact-ts/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/options/index.css -------------------------------------------------------------------------------- /template-preact-ts/src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/options/index.ts -------------------------------------------------------------------------------- /template-preact-ts/src/popup/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/popup/Popup.css -------------------------------------------------------------------------------- /template-preact-ts/src/popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/popup/Popup.tsx -------------------------------------------------------------------------------- /template-preact-ts/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/popup/index.css -------------------------------------------------------------------------------- /template-preact-ts/src/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/popup/index.ts -------------------------------------------------------------------------------- /template-preact-ts/src/sidepanel/Sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/sidepanel/Sidepanel.css -------------------------------------------------------------------------------- /template-preact-ts/src/sidepanel/Sidepanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/sidepanel/Sidepanel.tsx -------------------------------------------------------------------------------- /template-preact-ts/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-preact-ts/src/sidepanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/sidepanel/index.ts -------------------------------------------------------------------------------- /template-preact-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/src/zip.js -------------------------------------------------------------------------------- /template-preact-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/tsconfig.json -------------------------------------------------------------------------------- /template-preact-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-preact-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-preact-ts/vite.config.ts -------------------------------------------------------------------------------- /template-react-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/devtools.html -------------------------------------------------------------------------------- /template-react-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-react-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/newtab.html -------------------------------------------------------------------------------- /template-react-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/options.html -------------------------------------------------------------------------------- /template-react-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/package.json -------------------------------------------------------------------------------- /template-react-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/popup.html -------------------------------------------------------------------------------- /template-react-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-react-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-react-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-react-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-react-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-react-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-react-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/sidepanel.html -------------------------------------------------------------------------------- /template-react-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-react-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/background/index.js -------------------------------------------------------------------------------- /template-react-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-react-js/src/devtools/DevTools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/devtools/DevTools.css -------------------------------------------------------------------------------- /template-react-js/src/devtools/DevTools.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/devtools/DevTools.jsx -------------------------------------------------------------------------------- /template-react-js/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/devtools/index.css -------------------------------------------------------------------------------- /template-react-js/src/devtools/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/devtools/index.jsx -------------------------------------------------------------------------------- /template-react-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/manifest.js -------------------------------------------------------------------------------- /template-react-js/src/newtab/NewTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/newtab/NewTab.css -------------------------------------------------------------------------------- /template-react-js/src/newtab/NewTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/newtab/NewTab.jsx -------------------------------------------------------------------------------- /template-react-js/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/newtab/index.css -------------------------------------------------------------------------------- /template-react-js/src/newtab/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/newtab/index.jsx -------------------------------------------------------------------------------- /template-react-js/src/options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/options/Options.css -------------------------------------------------------------------------------- /template-react-js/src/options/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/options/Options.jsx -------------------------------------------------------------------------------- /template-react-js/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/options/index.css -------------------------------------------------------------------------------- /template-react-js/src/options/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/options/index.jsx -------------------------------------------------------------------------------- /template-react-js/src/popup/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/popup/Popup.css -------------------------------------------------------------------------------- /template-react-js/src/popup/Popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/popup/Popup.jsx -------------------------------------------------------------------------------- /template-react-js/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/popup/index.css -------------------------------------------------------------------------------- /template-react-js/src/popup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/popup/index.jsx -------------------------------------------------------------------------------- /template-react-js/src/sidepanel/SidePanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/sidepanel/SidePanel.css -------------------------------------------------------------------------------- /template-react-js/src/sidepanel/SidePanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/sidepanel/SidePanel.jsx -------------------------------------------------------------------------------- /template-react-js/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-react-js/src/sidepanel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/sidepanel/index.jsx -------------------------------------------------------------------------------- /template-react-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/src/zip.js -------------------------------------------------------------------------------- /template-react-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-js/vite.config.js -------------------------------------------------------------------------------- /template-react-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/devtools.html -------------------------------------------------------------------------------- /template-react-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/newtab.html -------------------------------------------------------------------------------- /template-react-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/options.html -------------------------------------------------------------------------------- /template-react-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/package.json -------------------------------------------------------------------------------- /template-react-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/popup.html -------------------------------------------------------------------------------- /template-react-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-react-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-react-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-react-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-react-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-react-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-react-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/sidepanel.html -------------------------------------------------------------------------------- /template-react-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-react-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-react-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-react-ts/src/devtools/DevTools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/devtools/DevTools.css -------------------------------------------------------------------------------- /template-react-ts/src/devtools/DevTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/devtools/DevTools.tsx -------------------------------------------------------------------------------- /template-react-ts/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/devtools/index.css -------------------------------------------------------------------------------- /template-react-ts/src/devtools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/devtools/index.tsx -------------------------------------------------------------------------------- /template-react-ts/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | declare const __APP_VERSION__: string 4 | -------------------------------------------------------------------------------- /template-react-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-react-ts/src/newtab/NewTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/newtab/NewTab.css -------------------------------------------------------------------------------- /template-react-ts/src/newtab/NewTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/newtab/NewTab.tsx -------------------------------------------------------------------------------- /template-react-ts/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/newtab/index.css -------------------------------------------------------------------------------- /template-react-ts/src/newtab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/newtab/index.tsx -------------------------------------------------------------------------------- /template-react-ts/src/options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/options/Options.css -------------------------------------------------------------------------------- /template-react-ts/src/options/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/options/Options.tsx -------------------------------------------------------------------------------- /template-react-ts/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/options/index.css -------------------------------------------------------------------------------- /template-react-ts/src/options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/options/index.tsx -------------------------------------------------------------------------------- /template-react-ts/src/popup/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/popup/Popup.css -------------------------------------------------------------------------------- /template-react-ts/src/popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/popup/Popup.tsx -------------------------------------------------------------------------------- /template-react-ts/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/popup/index.css -------------------------------------------------------------------------------- /template-react-ts/src/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/popup/index.tsx -------------------------------------------------------------------------------- /template-react-ts/src/sidepanel/SidePanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/sidepanel/SidePanel.css -------------------------------------------------------------------------------- /template-react-ts/src/sidepanel/SidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/sidepanel/SidePanel.tsx -------------------------------------------------------------------------------- /template-react-ts/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-react-ts/src/sidepanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/sidepanel/index.tsx -------------------------------------------------------------------------------- /template-react-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/src/zip.js -------------------------------------------------------------------------------- /template-react-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/tsconfig.json -------------------------------------------------------------------------------- /template-react-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-react-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-react-ts/vite.config.ts -------------------------------------------------------------------------------- /template-solid-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/devtools.html -------------------------------------------------------------------------------- /template-solid-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-solid-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/newtab.html -------------------------------------------------------------------------------- /template-solid-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/options.html -------------------------------------------------------------------------------- /template-solid-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/package.json -------------------------------------------------------------------------------- /template-solid-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/popup.html -------------------------------------------------------------------------------- /template-solid-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-solid-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-solid-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-solid-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-solid-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-solid-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-solid-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/sidepanel.html -------------------------------------------------------------------------------- /template-solid-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-solid-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/background/index.js -------------------------------------------------------------------------------- /template-solid-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-solid-js/src/devtools/DevTools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/devtools/DevTools.css -------------------------------------------------------------------------------- /template-solid-js/src/devtools/DevTools.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/devtools/DevTools.jsx -------------------------------------------------------------------------------- /template-solid-js/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/devtools/index.css -------------------------------------------------------------------------------- /template-solid-js/src/devtools/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/devtools/index.jsx -------------------------------------------------------------------------------- /template-solid-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/manifest.js -------------------------------------------------------------------------------- /template-solid-js/src/newtab/NewTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/newtab/NewTab.css -------------------------------------------------------------------------------- /template-solid-js/src/newtab/NewTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/newtab/NewTab.jsx -------------------------------------------------------------------------------- /template-solid-js/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/newtab/index.css -------------------------------------------------------------------------------- /template-solid-js/src/newtab/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/newtab/index.jsx -------------------------------------------------------------------------------- /template-solid-js/src/options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/options/Options.css -------------------------------------------------------------------------------- /template-solid-js/src/options/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/options/Options.jsx -------------------------------------------------------------------------------- /template-solid-js/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/options/index.css -------------------------------------------------------------------------------- /template-solid-js/src/options/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/options/index.jsx -------------------------------------------------------------------------------- /template-solid-js/src/popup/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/popup/Popup.css -------------------------------------------------------------------------------- /template-solid-js/src/popup/Popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/popup/Popup.jsx -------------------------------------------------------------------------------- /template-solid-js/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/popup/index.css -------------------------------------------------------------------------------- /template-solid-js/src/popup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/popup/index.jsx -------------------------------------------------------------------------------- /template-solid-js/src/sidepanel/Sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/sidepanel/Sidepanel.css -------------------------------------------------------------------------------- /template-solid-js/src/sidepanel/Sidepanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/sidepanel/Sidepanel.jsx -------------------------------------------------------------------------------- /template-solid-js/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-solid-js/src/sidepanel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/sidepanel/index.jsx -------------------------------------------------------------------------------- /template-solid-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/src/zip.js -------------------------------------------------------------------------------- /template-solid-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-js/vite.config.js -------------------------------------------------------------------------------- /template-solid-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/devtools.html -------------------------------------------------------------------------------- /template-solid-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/newtab.html -------------------------------------------------------------------------------- /template-solid-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/options.html -------------------------------------------------------------------------------- /template-solid-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/package.json -------------------------------------------------------------------------------- /template-solid-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/popup.html -------------------------------------------------------------------------------- /template-solid-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-solid-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-solid-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-solid-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-solid-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-solid-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-solid-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/sidepanel.html -------------------------------------------------------------------------------- /template-solid-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-solid-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-solid-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-solid-ts/src/devtools/DevTools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/devtools/DevTools.css -------------------------------------------------------------------------------- /template-solid-ts/src/devtools/DevTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/devtools/DevTools.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/devtools/index.css -------------------------------------------------------------------------------- /template-solid-ts/src/devtools/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/devtools/index.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | declare const __APP_VERSION__: string 4 | -------------------------------------------------------------------------------- /template-solid-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-solid-ts/src/newtab/NewTab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/newtab/NewTab.css -------------------------------------------------------------------------------- /template-solid-ts/src/newtab/NewTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/newtab/NewTab.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/newtab/index.css -------------------------------------------------------------------------------- /template-solid-ts/src/newtab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/newtab/index.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/options/Options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/options/Options.css -------------------------------------------------------------------------------- /template-solid-ts/src/options/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/options/Options.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/options/index.css -------------------------------------------------------------------------------- /template-solid-ts/src/options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/options/index.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/popup/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/popup/Popup.css -------------------------------------------------------------------------------- /template-solid-ts/src/popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/popup/Popup.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/popup/index.css -------------------------------------------------------------------------------- /template-solid-ts/src/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/popup/index.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/sidepanel/Sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/sidepanel/Sidepanel.css -------------------------------------------------------------------------------- /template-solid-ts/src/sidepanel/Sidepanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/sidepanel/Sidepanel.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-solid-ts/src/sidepanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/sidepanel/index.tsx -------------------------------------------------------------------------------- /template-solid-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/src/zip.js -------------------------------------------------------------------------------- /template-solid-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/tsconfig.json -------------------------------------------------------------------------------- /template-solid-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-solid-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-solid-ts/vite.config.ts -------------------------------------------------------------------------------- /template-stencil-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/package.json -------------------------------------------------------------------------------- /template-stencil-ts/src/assets/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/assets/icons/logo.ico -------------------------------------------------------------------------------- /template-stencil-ts/src/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/assets/icons/logo.svg -------------------------------------------------------------------------------- /template-stencil-ts/src/assets/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/assets/img/logo-128.png -------------------------------------------------------------------------------- /template-stencil-ts/src/assets/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/assets/img/logo-16.png -------------------------------------------------------------------------------- /template-stencil-ts/src/assets/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/assets/img/logo-32.png -------------------------------------------------------------------------------- /template-stencil-ts/src/assets/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/assets/img/logo-48.png -------------------------------------------------------------------------------- /template-stencil-ts/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/background/index.js -------------------------------------------------------------------------------- /template-stencil-ts/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components.d.ts -------------------------------------------------------------------------------- /template-stencil-ts/src/components/devtools-root/devtools-root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/devtools-root/devtools-root.css -------------------------------------------------------------------------------- /template-stencil-ts/src/components/devtools-root/devtools-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/devtools-root/devtools-root.tsx -------------------------------------------------------------------------------- /template-stencil-ts/src/components/newtab-root/newtab-root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/newtab-root/newtab-root.css -------------------------------------------------------------------------------- /template-stencil-ts/src/components/newtab-root/newtab-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/newtab-root/newtab-root.tsx -------------------------------------------------------------------------------- /template-stencil-ts/src/components/options-root/options-root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/options-root/options-root.css -------------------------------------------------------------------------------- /template-stencil-ts/src/components/options-root/options-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/options-root/options-root.tsx -------------------------------------------------------------------------------- /template-stencil-ts/src/components/popup-root/popup-root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/popup-root/popup-root.css -------------------------------------------------------------------------------- /template-stencil-ts/src/components/popup-root/popup-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/popup-root/popup-root.tsx -------------------------------------------------------------------------------- /template-stencil-ts/src/components/side-root/side-root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/side-root/side-root.css -------------------------------------------------------------------------------- /template-stencil-ts/src/components/side-root/side-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/components/side-root/side-root.tsx -------------------------------------------------------------------------------- /template-stencil-ts/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-stencil-ts/src/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/devtools.html -------------------------------------------------------------------------------- /template-stencil-ts/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/manifest.json -------------------------------------------------------------------------------- /template-stencil-ts/src/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/newtab.html -------------------------------------------------------------------------------- /template-stencil-ts/src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/options.html -------------------------------------------------------------------------------- /template-stencil-ts/src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/popup.html -------------------------------------------------------------------------------- /template-stencil-ts/src/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/sidepanel.html -------------------------------------------------------------------------------- /template-stencil-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/src/zip.js -------------------------------------------------------------------------------- /template-stencil-ts/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/stencil.config.ts -------------------------------------------------------------------------------- /template-stencil-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-stencil-ts/tsconfig.json -------------------------------------------------------------------------------- /template-svelte-js/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/.vscode/extensions.json -------------------------------------------------------------------------------- /template-svelte-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/devtools.html -------------------------------------------------------------------------------- /template-svelte-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-svelte-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/newtab.html -------------------------------------------------------------------------------- /template-svelte-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/options.html -------------------------------------------------------------------------------- /template-svelte-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/package.json -------------------------------------------------------------------------------- /template-svelte-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/popup.html -------------------------------------------------------------------------------- /template-svelte-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-svelte-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-svelte-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-svelte-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-svelte-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-svelte-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-svelte-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/sidepanel.html -------------------------------------------------------------------------------- /template-svelte-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-svelte-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/background/index.js -------------------------------------------------------------------------------- /template-svelte-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-svelte-js/src/devtools/DevTools.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/devtools/DevTools.svelte -------------------------------------------------------------------------------- /template-svelte-js/src/devtools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/devtools/index.js -------------------------------------------------------------------------------- /template-svelte-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/manifest.js -------------------------------------------------------------------------------- /template-svelte-js/src/newtab/NewTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/newtab/NewTab.svelte -------------------------------------------------------------------------------- /template-svelte-js/src/newtab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/newtab/index.js -------------------------------------------------------------------------------- /template-svelte-js/src/options/Options.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/options/Options.svelte -------------------------------------------------------------------------------- /template-svelte-js/src/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/options/index.js -------------------------------------------------------------------------------- /template-svelte-js/src/popup/Popup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/popup/Popup.svelte -------------------------------------------------------------------------------- /template-svelte-js/src/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/popup/index.js -------------------------------------------------------------------------------- /template-svelte-js/src/sidepanel/Sidepanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/sidepanel/Sidepanel.svelte -------------------------------------------------------------------------------- /template-svelte-js/src/sidepanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/sidepanel/index.js -------------------------------------------------------------------------------- /template-svelte-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/src/zip.js -------------------------------------------------------------------------------- /template-svelte-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-js/vite.config.js -------------------------------------------------------------------------------- /template-svelte-ts/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/.vscode/extensions.json -------------------------------------------------------------------------------- /template-svelte-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/devtools.html -------------------------------------------------------------------------------- /template-svelte-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/newtab.html -------------------------------------------------------------------------------- /template-svelte-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/options.html -------------------------------------------------------------------------------- /template-svelte-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/package.json -------------------------------------------------------------------------------- /template-svelte-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/popup.html -------------------------------------------------------------------------------- /template-svelte-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-svelte-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-svelte-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-svelte-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-svelte-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-svelte-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-svelte-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/sidepanel.html -------------------------------------------------------------------------------- /template-svelte-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-svelte-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-svelte-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-svelte-ts/src/devtools/DevTools.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/devtools/DevTools.svelte -------------------------------------------------------------------------------- /template-svelte-ts/src/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/devtools/index.ts -------------------------------------------------------------------------------- /template-svelte-ts/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/global.d.ts -------------------------------------------------------------------------------- /template-svelte-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-svelte-ts/src/newtab/NewTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/newtab/NewTab.svelte -------------------------------------------------------------------------------- /template-svelte-ts/src/newtab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/newtab/index.ts -------------------------------------------------------------------------------- /template-svelte-ts/src/options/Options.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/options/Options.svelte -------------------------------------------------------------------------------- /template-svelte-ts/src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/options/index.ts -------------------------------------------------------------------------------- /template-svelte-ts/src/popup/Popup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/popup/Popup.svelte -------------------------------------------------------------------------------- /template-svelte-ts/src/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/popup/index.ts -------------------------------------------------------------------------------- /template-svelte-ts/src/sidepanel/Sidepanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/sidepanel/Sidepanel.svelte -------------------------------------------------------------------------------- /template-svelte-ts/src/sidepanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/sidepanel/index.ts -------------------------------------------------------------------------------- /template-svelte-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/src/zip.js -------------------------------------------------------------------------------- /template-svelte-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/tsconfig.json -------------------------------------------------------------------------------- /template-svelte-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-svelte-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-svelte-ts/vite.config.ts -------------------------------------------------------------------------------- /template-ts-tailwind/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ -------------------------------------------------------------------------------- /template-ts-tailwind/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/LICENSE -------------------------------------------------------------------------------- /template-ts-tailwind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/README.md -------------------------------------------------------------------------------- /template-ts-tailwind/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/devtools.html -------------------------------------------------------------------------------- /template-ts-tailwind/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/newtab.html -------------------------------------------------------------------------------- /template-ts-tailwind/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/options.html -------------------------------------------------------------------------------- /template-ts-tailwind/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/package.json -------------------------------------------------------------------------------- /template-ts-tailwind/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/popup.html -------------------------------------------------------------------------------- /template-ts-tailwind/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/public/icons/logo.ico -------------------------------------------------------------------------------- /template-ts-tailwind/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/public/icons/logo.svg -------------------------------------------------------------------------------- /template-ts-tailwind/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/public/img/logo-128.png -------------------------------------------------------------------------------- /template-ts-tailwind/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/public/img/logo-16.png -------------------------------------------------------------------------------- /template-ts-tailwind/public/img/logo-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/public/img/logo-34.png -------------------------------------------------------------------------------- /template-ts-tailwind/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/public/img/logo-48.png -------------------------------------------------------------------------------- /template-ts-tailwind/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/sidepanel.html -------------------------------------------------------------------------------- /template-ts-tailwind/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/assets/logo.png -------------------------------------------------------------------------------- /template-ts-tailwind/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/background/index.ts -------------------------------------------------------------------------------- /template-ts-tailwind/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info("contentScript is running"); 2 | -------------------------------------------------------------------------------- /template-ts-tailwind/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/devtools/index.css -------------------------------------------------------------------------------- /template-ts-tailwind/src/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/devtools/index.ts -------------------------------------------------------------------------------- /template-ts-tailwind/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /template-ts-tailwind/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/manifest.ts -------------------------------------------------------------------------------- /template-ts-tailwind/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/newtab/index.css -------------------------------------------------------------------------------- /template-ts-tailwind/src/newtab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/newtab/index.ts -------------------------------------------------------------------------------- /template-ts-tailwind/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/options/index.css -------------------------------------------------------------------------------- /template-ts-tailwind/src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/options/index.ts -------------------------------------------------------------------------------- /template-ts-tailwind/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/popup/index.css -------------------------------------------------------------------------------- /template-ts-tailwind/src/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/popup/index.ts -------------------------------------------------------------------------------- /template-ts-tailwind/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-ts-tailwind/src/sidepanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/src/sidepanel/index.ts -------------------------------------------------------------------------------- /template-ts-tailwind/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/tsconfig.json -------------------------------------------------------------------------------- /template-ts-tailwind/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/tsconfig.node.json -------------------------------------------------------------------------------- /template-ts-tailwind/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-ts-tailwind/vite.config.ts -------------------------------------------------------------------------------- /template-vanilla-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/devtools.html -------------------------------------------------------------------------------- /template-vanilla-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-vanilla-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/newtab.html -------------------------------------------------------------------------------- /template-vanilla-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/options.html -------------------------------------------------------------------------------- /template-vanilla-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/package.json -------------------------------------------------------------------------------- /template-vanilla-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/popup.html -------------------------------------------------------------------------------- /template-vanilla-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-vanilla-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-vanilla-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-vanilla-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-vanilla-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-vanilla-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-vanilla-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/sidepanel.html -------------------------------------------------------------------------------- /template-vanilla-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-vanilla-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/background/index.js -------------------------------------------------------------------------------- /template-vanilla-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-vanilla-js/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/devtools/index.css -------------------------------------------------------------------------------- /template-vanilla-js/src/devtools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/devtools/index.js -------------------------------------------------------------------------------- /template-vanilla-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/manifest.js -------------------------------------------------------------------------------- /template-vanilla-js/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/newtab/index.css -------------------------------------------------------------------------------- /template-vanilla-js/src/newtab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/newtab/index.js -------------------------------------------------------------------------------- /template-vanilla-js/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/options/index.css -------------------------------------------------------------------------------- /template-vanilla-js/src/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/options/index.js -------------------------------------------------------------------------------- /template-vanilla-js/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/popup/index.css -------------------------------------------------------------------------------- /template-vanilla-js/src/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/popup/index.js -------------------------------------------------------------------------------- /template-vanilla-js/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-vanilla-js/src/sidepanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/sidepanel/index.js -------------------------------------------------------------------------------- /template-vanilla-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/src/zip.js -------------------------------------------------------------------------------- /template-vanilla-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-js/vite.config.js -------------------------------------------------------------------------------- /template-vanilla-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/devtools.html -------------------------------------------------------------------------------- /template-vanilla-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/newtab.html -------------------------------------------------------------------------------- /template-vanilla-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/options.html -------------------------------------------------------------------------------- /template-vanilla-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/package.json -------------------------------------------------------------------------------- /template-vanilla-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/popup.html -------------------------------------------------------------------------------- /template-vanilla-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-vanilla-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-vanilla-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-vanilla-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-vanilla-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-vanilla-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-vanilla-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/sidepanel.html -------------------------------------------------------------------------------- /template-vanilla-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-vanilla-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-vanilla-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-vanilla-ts/src/devtools/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/devtools/index.css -------------------------------------------------------------------------------- /template-vanilla-ts/src/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/devtools/index.ts -------------------------------------------------------------------------------- /template-vanilla-ts/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /template-vanilla-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-vanilla-ts/src/newtab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/newtab/index.css -------------------------------------------------------------------------------- /template-vanilla-ts/src/newtab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/newtab/index.ts -------------------------------------------------------------------------------- /template-vanilla-ts/src/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/options/index.css -------------------------------------------------------------------------------- /template-vanilla-ts/src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/options/index.ts -------------------------------------------------------------------------------- /template-vanilla-ts/src/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/popup/index.css -------------------------------------------------------------------------------- /template-vanilla-ts/src/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/popup/index.ts -------------------------------------------------------------------------------- /template-vanilla-ts/src/sidepanel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/sidepanel/index.css -------------------------------------------------------------------------------- /template-vanilla-ts/src/sidepanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/sidepanel/index.ts -------------------------------------------------------------------------------- /template-vanilla-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/src/zip.js -------------------------------------------------------------------------------- /template-vanilla-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/tsconfig.json -------------------------------------------------------------------------------- /template-vanilla-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-vanilla-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vanilla-ts/vite.config.ts -------------------------------------------------------------------------------- /template-vue-js/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /template-vue-js/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/devtools.html -------------------------------------------------------------------------------- /template-vue-js/jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": ["chrome"] } } 2 | -------------------------------------------------------------------------------- /template-vue-js/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/newtab.html -------------------------------------------------------------------------------- /template-vue-js/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/options.html -------------------------------------------------------------------------------- /template-vue-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/package.json -------------------------------------------------------------------------------- /template-vue-js/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/popup.html -------------------------------------------------------------------------------- /template-vue-js/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/public/icons/logo.ico -------------------------------------------------------------------------------- /template-vue-js/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/public/icons/logo.svg -------------------------------------------------------------------------------- /template-vue-js/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/public/img/logo-128.png -------------------------------------------------------------------------------- /template-vue-js/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/public/img/logo-16.png -------------------------------------------------------------------------------- /template-vue-js/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/public/img/logo-32.png -------------------------------------------------------------------------------- /template-vue-js/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/public/img/logo-48.png -------------------------------------------------------------------------------- /template-vue-js/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/sidepanel.html -------------------------------------------------------------------------------- /template-vue-js/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/assets/logo.png -------------------------------------------------------------------------------- /template-vue-js/src/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/background/index.js -------------------------------------------------------------------------------- /template-vue-js/src/contentScript/index.js: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-vue-js/src/devtools/DevTools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/devtools/DevTools.vue -------------------------------------------------------------------------------- /template-vue-js/src/devtools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/devtools/index.js -------------------------------------------------------------------------------- /template-vue-js/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/manifest.js -------------------------------------------------------------------------------- /template-vue-js/src/newtab/NewTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/newtab/NewTab.vue -------------------------------------------------------------------------------- /template-vue-js/src/newtab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/newtab/index.js -------------------------------------------------------------------------------- /template-vue-js/src/options/Options.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/options/Options.vue -------------------------------------------------------------------------------- /template-vue-js/src/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/options/index.js -------------------------------------------------------------------------------- /template-vue-js/src/popup/Popup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/popup/Popup.vue -------------------------------------------------------------------------------- /template-vue-js/src/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/popup/index.js -------------------------------------------------------------------------------- /template-vue-js/src/sidepanel/SidePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/sidepanel/SidePanel.vue -------------------------------------------------------------------------------- /template-vue-js/src/sidepanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/sidepanel/index.js -------------------------------------------------------------------------------- /template-vue-js/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/src/zip.js -------------------------------------------------------------------------------- /template-vue-js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-js/vite.config.js -------------------------------------------------------------------------------- /template-vue-ts/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /template-vue-ts/devtools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/devtools.html -------------------------------------------------------------------------------- /template-vue-ts/newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/newtab.html -------------------------------------------------------------------------------- /template-vue-ts/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/options.html -------------------------------------------------------------------------------- /template-vue-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/package.json -------------------------------------------------------------------------------- /template-vue-ts/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/popup.html -------------------------------------------------------------------------------- /template-vue-ts/public/icons/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/public/icons/logo.ico -------------------------------------------------------------------------------- /template-vue-ts/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/public/icons/logo.svg -------------------------------------------------------------------------------- /template-vue-ts/public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/public/img/logo-128.png -------------------------------------------------------------------------------- /template-vue-ts/public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/public/img/logo-16.png -------------------------------------------------------------------------------- /template-vue-ts/public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/public/img/logo-32.png -------------------------------------------------------------------------------- /template-vue-ts/public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/public/img/logo-48.png -------------------------------------------------------------------------------- /template-vue-ts/sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/sidepanel.html -------------------------------------------------------------------------------- /template-vue-ts/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/assets/logo.png -------------------------------------------------------------------------------- /template-vue-ts/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/background/index.ts -------------------------------------------------------------------------------- /template-vue-ts/src/contentScript/index.ts: -------------------------------------------------------------------------------- 1 | console.info('contentScript is running') 2 | -------------------------------------------------------------------------------- /template-vue-ts/src/devtools/DevTools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/devtools/DevTools.vue -------------------------------------------------------------------------------- /template-vue-ts/src/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/devtools/index.ts -------------------------------------------------------------------------------- /template-vue-ts/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/global.d.ts -------------------------------------------------------------------------------- /template-vue-ts/src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/manifest.ts -------------------------------------------------------------------------------- /template-vue-ts/src/newtab/NewTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/newtab/NewTab.vue -------------------------------------------------------------------------------- /template-vue-ts/src/newtab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/newtab/index.ts -------------------------------------------------------------------------------- /template-vue-ts/src/options/Options.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/options/Options.vue -------------------------------------------------------------------------------- /template-vue-ts/src/options/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/options/index.ts -------------------------------------------------------------------------------- /template-vue-ts/src/popup/Popup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/popup/Popup.vue -------------------------------------------------------------------------------- /template-vue-ts/src/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/popup/index.ts -------------------------------------------------------------------------------- /template-vue-ts/src/sidepanel/SidePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/sidepanel/SidePanel.vue -------------------------------------------------------------------------------- /template-vue-ts/src/sidepanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/sidepanel/index.ts -------------------------------------------------------------------------------- /template-vue-ts/src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/src/zip.js -------------------------------------------------------------------------------- /template-vue-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/tsconfig.json -------------------------------------------------------------------------------- /template-vue-ts/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/tsconfig.node.json -------------------------------------------------------------------------------- /template-vue-ts/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/template-vue-ts/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guocaoyi/create-chrome-ext/HEAD/tsconfig.json --------------------------------------------------------------------------------