tauri-plugin-ui-inspector 0.1.0

Native window capture and local agent bridge for inspecting Tauri webview elements.
1
2
3
4
5
6
7
8
9
10
11
12
//! Generates Tauri command permissions for the plugin.

const COMMANDS: &[&str] = &[
    "capture_selection",
    "cancel_selection",
    "complete_resolution",
    "get_last_reference",
];

fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}