├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── reg ├── Enable_ExternalProtocolDialog_ShowCheckbox.reg └── Remove_ExternalProtocolDialog_ShowCheckbox.reg ├── screenshot ├── 20241125202543.jpg └── 20250514203101.jpg └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/README.md -------------------------------------------------------------------------------- /reg/Enable_ExternalProtocolDialog_ShowCheckbox.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/reg/Enable_ExternalProtocolDialog_ShowCheckbox.reg -------------------------------------------------------------------------------- /reg/Remove_ExternalProtocolDialog_ShowCheckbox.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/reg/Remove_ExternalProtocolDialog_ShowCheckbox.reg -------------------------------------------------------------------------------- /screenshot/20241125202543.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/screenshot/20241125202543.jpg -------------------------------------------------------------------------------- /screenshot/20250514203101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/screenshot/20250514203101.jpg -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyPuppy514/url-scheme-handler/HEAD/src/main.rs --------------------------------------------------------------------------------