| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "$schema": "https://raw.githubusercontent.com/neutralinojs/neutralinojs/main/schemas/neutralino.config.schema.json",
- "applicationId": "com.markdownviewer.desktop",
- "version": "3.7.4",
- "defaultMode": "window",
- "port": 0,
- "documentRoot": "/resources/",
- "url": "/",
- "enableServer": true,
- "enableNativeAPI": true,
- "tokenSecurity": "one-time",
- "logging": {
- "enabled": false,
- "writeToLogFile": false
- },
- "nativeAllowList": [
- "app.exit",
- "os.showOpenDialog",
- "os.showSaveDialog",
- "os.showMessageBox",
- "os.open",
- "os.setTray",
- "filesystem.readFile",
- "filesystem.writeFile"
- ],
- "globalVariables": {},
- "modes": {
- "window": {
- "title": "Markdown Viewer",
- "width": 1280,
- "height": 720,
- "minWidth": 400,
- "minHeight": 200,
- "center": true,
- "fullScreen": false,
- "alwaysOnTop": false,
- "icon": "/resources/assets/icon.jpg",
- "enableInspector": false,
- "borderless": false,
- "maximize": false,
- "hidden": false,
- "resizable": true,
- "exitProcessOnClose": true
- },
- "browser": {
- "globalVariables": {},
- "nativeBlockList": ["filesystem.*"]
- },
- "cloud": {
- "url": "/resources/#cloud",
- "nativeAllowList": ["app.*"]
- },
- "chrome": {
- "width": 1280,
- "height": 720,
- "args": "--user-agent=\"Neutralinojs chrome mode\"",
- "nativeBlockList": ["filesystem.*", "os.*"]
- }
- },
- "cli": {
- "binaryName": "markdown-viewer",
- "resourcesPath": "/resources/",
- "extensionsPath": "/extensions/",
- "clientLibrary": "/resources/js/neutralino.js",
- "binaryVersion": "6.5.0",
- "clientVersion": "6.5.0"
- }
- }
|