All checks were successful
Beta Release / beta (push) Successful in 1m25s
- Remove Firefox build support (CI, Makefile, wxt config) - Fix chrome.alarms undefined error (add 'alarms' permission) - Add Chat tab to side panel connected to Studio API (/api/chat) - Streaming SSE, tool calls, code blocks, thinking display - Shared chat history with desktop Studio - New lib/api.js client for extension chat endpoints 💘 Generated with Crush Assisted-by: GLM-5.1 via Crush <crush@charm.land>
29 lines
620 B
JavaScript
29 lines
620 B
JavaScript
import { defineConfig } from 'wxt';
|
|
|
|
export default defineConfig({
|
|
srcDir: 'src',
|
|
manifest: {
|
|
name: 'Muyue',
|
|
description: 'AI-powered browser testing & automation — connected to your Muyue desktop app',
|
|
permissions: [
|
|
'storage',
|
|
'activeTab',
|
|
'tabs',
|
|
'sidePanel',
|
|
'scripting',
|
|
'notifications',
|
|
'alarms',
|
|
],
|
|
host_permissions: ['http://127.0.0.1:*/*', 'http://localhost:*/*'],
|
|
action: {
|
|
default_icon: {
|
|
16: 'icon/16.png',
|
|
32: 'icon/32.png',
|
|
},
|
|
},
|
|
side_panel: {
|
|
default_path: 'sidepanel.html',
|
|
},
|
|
},
|
|
});
|