Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NaroZeol/PowerHexInspector
A simple powertoys run plugin provides fast and easy way to peek other forms of an input number
https://github.com/NaroZeol/PowerHexInspector
powertoys powertoys-run powertoys-run-plugin
Last synced: 4 months ago
JSON representation
A simple powertoys run plugin provides fast and easy way to peek other forms of an input number
- Host: GitHub
- URL: https://github.com/NaroZeol/PowerHexInspector
- Owner: NaroZeol
- License: mit
- Created: 2024-05-21T08:40:35.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-18T08:57:30.000Z (5 months ago)
- Last Synced: 2024-07-30T19:58:54.376Z (5 months ago)
- Topics: powertoys, powertoys-run, powertoys-run-plugin
- Language: C#
- Homepage:
- Size: 416 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-powertoys-run-plugins - HexInspector - Convert numbers between bases. (Plugins)
README
# PowerHexInspector
A simple [PowerToys Run](https://learn.microsoft.com/en-us/windows/powertoys/run) plugin.
Provides functionality to convert numbers to different bases.
[简体中文](./README_ZH-CN.md)
## Usage
### Trigger Keyword
The current trigger keyword is `insp`.
### Input Format
The input format is:
insp {base} {input}
The base can be one of the following values:
- `b` or `B`: Binary
- `o` or `O`: Octal
- `d` or `D`: Decimal
- `h` or `H`: HexadecimalOr use
insp {input}
In this case, the input should be a string that follows the rules below:
- A string starting with `0x` will be considered hexadecimal
- A string starting with `0b` will be considered binary
- A string starting with `0` will be considered octal
- Otherwise, it will be considered decimal### Example Usage
![](./Images/examples/ep1.png)
![](./Images/examples/ep2.png)
Clicking or pressing `Enter` will copy the conversion result to the clipboard.
## Installation
Download the latest release, extract it, and place the `PowerHexInspector` folder into the `%LOCALAPPDATA%\Microsoft\PowerToys\PowerToys Run\Plugins` directory. Then, restart PowerToys.## Disclaimer
This plugin is still in development and may have various unknown bugs and crashes.