add html file hosting

This commit is contained in:
2026-05-11 20:00:31 +08:00
parent aa9b9846ca
commit 859c7d9e7c
6 changed files with 464 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ import { openPlecUpload } from './tools/plecUpload';
import { openApplovinUpload } from './tools/applovinUpload';
import { openBase64Scanner } from './tools/base64Scanner';
import { openDailyUpdate } from './tools/dailyUpdate';
import { openSendToMobile } from './tools/sendToMobile';
export function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(
@@ -11,6 +12,7 @@ export function activate(context: vscode.ExtensionContext) {
vscode.commands.registerCommand('hplToolbox.openApplovinUpload', () => openApplovinUpload(context)),
vscode.commands.registerCommand('hplToolbox.openBase64Scanner', () => openBase64Scanner(context)),
vscode.commands.registerCommand('hplToolbox.openDailyUpdate', () => openDailyUpdate(context)),
vscode.commands.registerCommand('hplToolbox.openSendToMobile', () => openSendToMobile(context)),
vscode.window.registerWebviewViewProvider('hplToolbox.launcher', new LauncherViewProvider())
);
}