├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode └── tasks.json ├── Electron ├── main.js ├── preload.js └── renderer.js ├── Installer.js ├── LICENSE ├── Metadata.json ├── PrepareModules.js ├── README.md ├── TODO.md ├── index.html ├── manifest.xml ├── module_ignore.json ├── module_list.json ├── modules ├── Clamp.svelte ├── Counter.svelte ├── ExampleModule.svelte.disabled ├── FolderLookup.svelte ├── Folders.svelte ├── ImageClipboard.svelte ├── ImportYoutubeMembers.svelte ├── MarkerTool.svelte ├── Notes.svelte ├── OpenAtPlayhead.svelte ├── ProgressTracker.svelte ├── QuickActions.svelte ├── QuickProperties.svelte ├── QuickRender.svelte ├── TemplateModule.svelte.disabled ├── Test.svelte.disabled ├── Timecode.svelte ├── Timer.svelte ├── ToggleItems.svelte └── YoutubeChapters.svelte ├── package.json ├── rollup.config.js ├── src ├── App.svelte ├── Components │ ├── ModuleQuickDrop.svelte │ ├── ModuleView.svelte │ ├── Navbar.svelte │ ├── RefreshNotification.svelte │ ├── SettingInputComponents │ │ ├── Button.svelte │ │ ├── Checkbox.svelte │ │ ├── Color.svelte │ │ ├── Date.svelte │ │ ├── Dropdown.svelte │ │ ├── File.svelte │ │ ├── Keybind.svelte │ │ ├── Numeric.svelte │ │ ├── Radio.svelte │ │ ├── Slider.svelte │ │ └── Text.svelte │ ├── Settings.svelte │ └── Update.svelte ├── Lib │ ├── AppSettings.ts │ ├── Common.ts │ ├── DavinciResolve.ts │ ├── DragHandler.ts │ ├── FFmpeg.ts │ ├── Logger.ts │ ├── ModuleHandler.ts │ ├── ResolveAPI.d.ts │ ├── ResolveEnums.ts │ ├── Settings.ts │ ├── SharedModuleLogic.ts │ ├── Statistics.ts │ └── Updater.ts ├── Stores │ └── DataStore.ts ├── app.scss ├── assets │ ├── DropHere.svg │ ├── Icon.png │ ├── Info.svg │ ├── KeyboardOff.svg │ ├── KeyboardOn.svg │ ├── Logo.png │ ├── README-Example.png │ ├── arrowDown.svg │ ├── arrowUp.svg │ ├── close.svg │ ├── github.svg │ ├── refresh_icon.svg │ └── settings_icon.svg ├── main.ts └── scss │ ├── _Animation.scss │ ├── _Colors.scss │ ├── _ComponentInputs.scss │ └── _Flex.scss ├── svelte.config.js ├── tsconfig.json └── vite.config.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/Electron/main.js -------------------------------------------------------------------------------- /Electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/Electron/preload.js -------------------------------------------------------------------------------- /Electron/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/Electron/renderer.js -------------------------------------------------------------------------------- /Installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/Installer.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/Metadata.json -------------------------------------------------------------------------------- /PrepareModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/PrepareModules.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/TODO.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/index.html -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/manifest.xml -------------------------------------------------------------------------------- /module_ignore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/module_ignore.json -------------------------------------------------------------------------------- /module_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/module_list.json -------------------------------------------------------------------------------- /modules/Clamp.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/Clamp.svelte -------------------------------------------------------------------------------- /modules/Counter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/Counter.svelte -------------------------------------------------------------------------------- /modules/ExampleModule.svelte.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/ExampleModule.svelte.disabled -------------------------------------------------------------------------------- /modules/FolderLookup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/FolderLookup.svelte -------------------------------------------------------------------------------- /modules/Folders.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/Folders.svelte -------------------------------------------------------------------------------- /modules/ImageClipboard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/ImageClipboard.svelte -------------------------------------------------------------------------------- /modules/ImportYoutubeMembers.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/ImportYoutubeMembers.svelte -------------------------------------------------------------------------------- /modules/MarkerTool.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/MarkerTool.svelte -------------------------------------------------------------------------------- /modules/Notes.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/Notes.svelte -------------------------------------------------------------------------------- /modules/OpenAtPlayhead.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/OpenAtPlayhead.svelte -------------------------------------------------------------------------------- /modules/ProgressTracker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/ProgressTracker.svelte -------------------------------------------------------------------------------- /modules/QuickActions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/QuickActions.svelte -------------------------------------------------------------------------------- /modules/QuickProperties.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/QuickProperties.svelte -------------------------------------------------------------------------------- /modules/QuickRender.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/QuickRender.svelte -------------------------------------------------------------------------------- /modules/TemplateModule.svelte.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/TemplateModule.svelte.disabled -------------------------------------------------------------------------------- /modules/Test.svelte.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/Test.svelte.disabled -------------------------------------------------------------------------------- /modules/Timecode.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/Timecode.svelte -------------------------------------------------------------------------------- /modules/Timer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/Timer.svelte -------------------------------------------------------------------------------- /modules/ToggleItems.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/ToggleItems.svelte -------------------------------------------------------------------------------- /modules/YoutubeChapters.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/modules/YoutubeChapters.svelte -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/Components/ModuleQuickDrop.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/ModuleQuickDrop.svelte -------------------------------------------------------------------------------- /src/Components/ModuleView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/ModuleView.svelte -------------------------------------------------------------------------------- /src/Components/Navbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/Navbar.svelte -------------------------------------------------------------------------------- /src/Components/RefreshNotification.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/RefreshNotification.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Button.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Checkbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Checkbox.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Color.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Color.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Date.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Date.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Dropdown.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Dropdown.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/File.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/File.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Keybind.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Keybind.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Numeric.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Numeric.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Radio.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Radio.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Slider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Slider.svelte -------------------------------------------------------------------------------- /src/Components/SettingInputComponents/Text.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/SettingInputComponents/Text.svelte -------------------------------------------------------------------------------- /src/Components/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/Settings.svelte -------------------------------------------------------------------------------- /src/Components/Update.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Components/Update.svelte -------------------------------------------------------------------------------- /src/Lib/AppSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/AppSettings.ts -------------------------------------------------------------------------------- /src/Lib/Common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/Common.ts -------------------------------------------------------------------------------- /src/Lib/DavinciResolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/DavinciResolve.ts -------------------------------------------------------------------------------- /src/Lib/DragHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/DragHandler.ts -------------------------------------------------------------------------------- /src/Lib/FFmpeg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/FFmpeg.ts -------------------------------------------------------------------------------- /src/Lib/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/Logger.ts -------------------------------------------------------------------------------- /src/Lib/ModuleHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/ModuleHandler.ts -------------------------------------------------------------------------------- /src/Lib/ResolveAPI.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/ResolveAPI.d.ts -------------------------------------------------------------------------------- /src/Lib/ResolveEnums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/ResolveEnums.ts -------------------------------------------------------------------------------- /src/Lib/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/Settings.ts -------------------------------------------------------------------------------- /src/Lib/SharedModuleLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/SharedModuleLogic.ts -------------------------------------------------------------------------------- /src/Lib/Statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/Statistics.ts -------------------------------------------------------------------------------- /src/Lib/Updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Lib/Updater.ts -------------------------------------------------------------------------------- /src/Stores/DataStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/Stores/DataStore.ts -------------------------------------------------------------------------------- /src/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/app.scss -------------------------------------------------------------------------------- /src/assets/DropHere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/DropHere.svg -------------------------------------------------------------------------------- /src/assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/Icon.png -------------------------------------------------------------------------------- /src/assets/Info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/Info.svg -------------------------------------------------------------------------------- /src/assets/KeyboardOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/KeyboardOff.svg -------------------------------------------------------------------------------- /src/assets/KeyboardOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/KeyboardOn.svg -------------------------------------------------------------------------------- /src/assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/Logo.png -------------------------------------------------------------------------------- /src/assets/README-Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/README-Example.png -------------------------------------------------------------------------------- /src/assets/arrowDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/arrowDown.svg -------------------------------------------------------------------------------- /src/assets/arrowUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/arrowUp.svg -------------------------------------------------------------------------------- /src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/close.svg -------------------------------------------------------------------------------- /src/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/github.svg -------------------------------------------------------------------------------- /src/assets/refresh_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/refresh_icon.svg -------------------------------------------------------------------------------- /src/assets/settings_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/assets/settings_icon.svg -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/scss/_Animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/scss/_Animation.scss -------------------------------------------------------------------------------- /src/scss/_Colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/scss/_Colors.scss -------------------------------------------------------------------------------- /src/scss/_ComponentInputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/scss/_ComponentInputs.scss -------------------------------------------------------------------------------- /src/scss/_Flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/src/scss/_Flex.scss -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VilleOlof/Toolbox/HEAD/vite.config.js --------------------------------------------------------------------------------