We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e2eea1 commit 57dea7aCopy full SHA for 57dea7a
wxt.config.ts
@@ -4,9 +4,9 @@ import { defineConfig } from 'wxt';
4
export default defineConfig({
5
extensionApi: 'chrome',
6
modules: ['@wxt-dev/module-react'],
7
- manifest: {
8
- name: 'Git Ingest - Turn any Git repo to a LLM-friendly prompt',
+ manifest: (env: ConfigEnv) => ({
+ name: (env.browser === 'firefox') ? 'Git Ingest - Turn any Git repo to LLM prompt' : 'Git Ingest - Turn any Git repo to a LLM-friendly prompt',
9
description: 'Turn any Git repository into a prompt-friendly text ingest for LLMs. By replacing hub with ingest to access a coresponding digest.',
10
permissions: ['storage'],
11
- }
+ })
12
});
0 commit comments