Export Configuration

Download your current configuration file for backup or transfer purposes.

Import Configuration

Upload a configuration file to replace your current settings.

@if (selectedFileName) { {{ selectedFileName }} }
@if (importMessage) {

{{ importMessage }}

}
@if (config$ | async) {

Current Configuration

@if (hasChanges) { }

Services configured: {{ editableConfig?.length || 0 }}

@if (hasChanges) {

⚠️ You have unsaved changes

} @if (saveMessage) {

{{ saveMessage }}

}
@if (editableConfig && editableConfig.length > 0) {
@for (service of editableConfig; track $index) { }
🔄 # Icon Service Name URL Headers Actions
⋮⋮
{{ $index + 1 }} @if (isEditing($index)) { } @else { @if (service.icon) { } @else { } } @if (isEditing($index)) { } @else { {{ service.name }} } @if (isEditing($index)) { } @else { {{ service.url }} } @if (isEditing($index)) { } @else { @if (service.headers && Object.keys(service.headers).length > 0) { {{ Object.keys(service.headers).length }} header(s) } @else { None } } @if (isEditing($index)) {
} @else {
}
}
}